public static enum FilterStep.Mode extends Enum<FilterStep.Mode>
| Enum Constant and Description |
|---|
OFF
Skip this step.
|
ON
Only accept messages that satisfy this step.
|
PASS
Accept all messages, modify only those that satisfy this step.
|
TRY
Accept a message if this step is either satisfied or inapplicable, modify only if this step is satisfied.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getToolTip() |
String |
toString() |
static FilterStep.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterStep.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterStep.Mode ON
public static final FilterStep.Mode TRY
public static final FilterStep.Mode PASS
public static final FilterStep.Mode OFF
public static FilterStep.Mode[] values()
for (FilterStep.Mode c : FilterStep.Mode.values()) System.out.println(c);
public static FilterStep.Mode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getToolTip()
public String toString()
toString in class Enum<FilterStep.Mode>Copyright © 2023 LSST. All rights reserved.