public static enum SimpleArgumentParser.ArgType extends java.lang.Enum<SimpleArgumentParser.ArgType>
Modifier and Type | Method and Description |
---|---|
static SimpleArgumentParser.ArgType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleArgumentParser.ArgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleArgumentParser.ArgType STRING
public static final SimpleArgumentParser.ArgType INT
public static final SimpleArgumentParser.ArgType FLAG
public static SimpleArgumentParser.ArgType[] values()
for (SimpleArgumentParser.ArgType c : SimpleArgumentParser.ArgType.values()) System.out.println(c);
public static SimpleArgumentParser.ArgType 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