public enum MatchRecognizeSkipClause extends Enum<MatchRecognizeSkipClause>
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 |
---|---|
String |
getText()
Returns clause text.
|
static MatchRecognizeSkipClause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchRecognizeSkipClause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchRecognizeSkipClause TO_CURRENT_ROW
public static final MatchRecognizeSkipClause TO_NEXT_ROW
public static final MatchRecognizeSkipClause PAST_LAST_ROW
public static MatchRecognizeSkipClause[] values()
for (MatchRecognizeSkipClause c : MatchRecognizeSkipClause.values()) System.out.println(c);
public static MatchRecognizeSkipClause 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 getText()