public enum CLIInteractionFlag extends Enum<CLIInteractionFlag>
Enum Constant and Description |
---|
NO_FULLPATH
Do not perform the full path check on show commands.
|
NO_HIDDEN
Allows execution of hidden CLI commands.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CLIInteractionFlag |
valueOf(int i) |
static CLIInteractionFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CLIInteractionFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLIInteractionFlag NO_FULLPATH
public static final CLIInteractionFlag NO_HIDDEN
public static CLIInteractionFlag[] values()
for (CLIInteractionFlag c : CLIInteractionFlag.values()) System.out.println(c);
public static CLIInteractionFlag 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 int getValue()
public static CLIInteractionFlag valueOf(int i)