public static enum Token.Kind extends Enum<Token.Kind>
| Enum Constant and Description |
|---|
alternation |
backReference |
captureGroupBegin |
caret |
charClass |
dollar |
groupEnd |
lookAheadAssertionBegin |
lookBehindAssertionBegin |
nonCaptureGroupBegin |
nonWordBoundary |
quantifier |
wordBoundary |
| Modifier and Type | Method and Description |
|---|---|
static Token.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Token.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Token.Kind caret
public static final Token.Kind dollar
public static final Token.Kind wordBoundary
public static final Token.Kind nonWordBoundary
public static final Token.Kind backReference
public static final Token.Kind quantifier
public static final Token.Kind alternation
public static final Token.Kind captureGroupBegin
public static final Token.Kind nonCaptureGroupBegin
public static final Token.Kind lookAheadAssertionBegin
public static final Token.Kind lookBehindAssertionBegin
public static final Token.Kind groupEnd
public static final Token.Kind charClass
public static Token.Kind[] values()
public static Token.Kind 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