public enum PatternFilter extends java.lang.Enum<PatternFilter>
Enum Constant and Description |
---|
AlphabetSize |
Conservedness |
Frequency |
InstanceCountPercentage |
Modifier and Type | Method and Description |
---|---|
static PatternFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PatternFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatternFilter Frequency
public static final PatternFilter InstanceCountPercentage
public static final PatternFilter AlphabetSize
public static final PatternFilter Conservedness
public static PatternFilter[] values()
for (PatternFilter c : PatternFilter.values()) System.out.println(c);
public static PatternFilter 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 null