public enum CommandName extends Enum<CommandName>
| Enum Constant and Description |
|---|
CALL
Calls into another view
|
FOR
Produces an iterator block
|
IF
Represents single or default conditional blocks
|
NONE
No command
|
PART
Allows a view to define templated parts of another
|
VIEW
Defines view metadata
|
XOR
Wraps a set of mutually exclusive conditional blocks
|
| Modifier and Type | Method and Description |
|---|---|
static CommandName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandName NONE
public static final CommandName VIEW
public static final CommandName FOR
public static final CommandName XOR
public static final CommandName IF
public static final CommandName CALL
public static final CommandName PART
public static CommandName[] values()
for (CommandName c : CommandName.values()) System.out.println(c);
public static CommandName 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 © 2014. All rights reserved.