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