public static enum CommandToken.TokenKind extends Enum<CommandToken.TokenKind>
Enum Constant and Description |
---|
BATCH_ARGUMENTS
serialized batch arguments.
|
BATCH_ID
batch ID.
|
EXECUTION_ID
execution ID.
|
FLOW_ID
flow ID.
|
TEXT
immediate text.
|
Modifier and Type | Method and Description |
---|---|
static CommandToken.TokenKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandToken.TokenKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandToken.TokenKind TEXT
public static final CommandToken.TokenKind BATCH_ID
public static final CommandToken.TokenKind FLOW_ID
public static final CommandToken.TokenKind EXECUTION_ID
public static final CommandToken.TokenKind BATCH_ARGUMENTS
public static CommandToken.TokenKind[] values()
for (CommandToken.TokenKind c : CommandToken.TokenKind.values()) System.out.println(c);
public static CommandToken.TokenKind 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 nullCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.