public static enum Options.Flag.Kind extends java.lang.Enum<Options.Flag.Kind>
Enum Constant and Description |
---|
DEBUG |
HELP |
MAIN |
SECRET |
SECRET_HELP |
VERSION |
Modifier and Type | Method and Description |
---|---|
static Options.Flag.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Options.Flag.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.Flag.Kind MAIN
public static final Options.Flag.Kind DEBUG
public static final Options.Flag.Kind VERSION
public static final Options.Flag.Kind HELP
public static final Options.Flag.Kind SECRET
public static final Options.Flag.Kind SECRET_HELP
public static Options.Flag.Kind[] values()
for (Options.Flag.Kind c : Options.Flag.Kind.values()) System.out.println(c);
public static Options.Flag.Kind 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