public enum ShortCmdBehaviour extends java.lang.Enum<ShortCmdBehaviour>
| Enum Constant and Description |
|---|
ARGUMENT_FILE |
AUTO |
JAR_MANIFEST |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ShortCmdBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShortCmdBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShortCmdBehaviour NONE
public static final ShortCmdBehaviour JAR_MANIFEST
public static final ShortCmdBehaviour ARGUMENT_FILE
public static final ShortCmdBehaviour AUTO
public static ShortCmdBehaviour[] values()
for (ShortCmdBehaviour c : ShortCmdBehaviour.values()) System.out.println(c);
public static ShortCmdBehaviour valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null