public static enum ToolAction.Flag extends Enum<ToolAction.Flag>
Enum Constant and Description |
---|
COMPILE
Indicates that this is a "compile" action.
|
DEBUG
Indicates that this is a "debug" action.
|
PROJECT
Indicates that this is a project-oriented action rather than file
oriented.
|
RUN
Indicates that this is a "run" action.
|
Modifier and Type | Method and Description |
---|---|
static ToolAction.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToolAction.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolAction.Flag PROJECT
public static final ToolAction.Flag COMPILE
public static final ToolAction.Flag RUN
public static final ToolAction.Flag DEBUG
public static ToolAction.Flag[] values()
for (ToolAction.Flag c : ToolAction.Flag.values()) System.out.println(c);
public static ToolAction.Flag 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