public enum FilterType extends java.lang.Enum<FilterType>
Enum Constant and Description |
---|
CaseDurationPercentile |
CaseDurationThreshold |
CaseIds |
None |
VariantPercentile |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static FilterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterType None
public static final FilterType VariantPercentile
public static final FilterType CaseDurationPercentile
public static final FilterType CaseDurationThreshold
public static final FilterType CaseIds
public static FilterType[] values()
for (FilterType c : FilterType.values()) System.out.println(c);
public static FilterType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<FilterType>