public static enum FilterStep.Method extends Enum<FilterStep.Method>
| Enum Constant and Description |
|---|
CLASS
The target should be an instance of the class specified by the parameter string, or of its subclass.
|
CONTAINS
The target should contain the parameter string.
|
EQUALS
The target should be equal to the parameter string.
|
NAME
The definition string is the path of the filter that should be applied to the target.
|
REGEX
The parameter string is a regular expression the target should match.
|
WILDCARD
The parameter string is a Unix-style wildcard the target should match.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getToolTip() |
boolean |
needsTarget() |
String |
toString() |
static FilterStep.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterStep.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterStep.Method REGEX
public static final FilterStep.Method WILDCARD
public static final FilterStep.Method CONTAINS
public static final FilterStep.Method EQUALS
public static final FilterStep.Method CLASS
public static final FilterStep.Method NAME
public static FilterStep.Method[] values()
for (FilterStep.Method c : FilterStep.Method.values()) System.out.println(c);
public static FilterStep.Method 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 boolean needsTarget()
public String toString()
toString in class Enum<FilterStep.Method>Copyright © 2023 LSST. All rights reserved.