public enum MatchRecognizeSkipEnum extends Enum<MatchRecognizeSkipEnum>
Enum Constant and Description |
---|
PAST_LAST_ROW
Skip past last row.
|
TO_CURRENT_ROW
Skip to current row.
|
TO_NEXT_ROW
Skip to next row.
|
Modifier and Type | Method and Description |
---|---|
static MatchRecognizeSkipEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchRecognizeSkipEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchRecognizeSkipEnum TO_CURRENT_ROW
public static final MatchRecognizeSkipEnum TO_NEXT_ROW
public static final MatchRecognizeSkipEnum PAST_LAST_ROW
public static MatchRecognizeSkipEnum[] values()
for (MatchRecognizeSkipEnum c : MatchRecognizeSkipEnum.values()) System.out.println(c);
public static MatchRecognizeSkipEnum 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 null