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