public enum OptionsSpecType extends Enum<OptionsSpecType>
| Enum Constant and Description |
|---|
BoolOption |
IntOption |
LongOption |
StringArrayOption |
StringOption |
| Modifier and Type | Method and Description |
|---|---|
static OptionsSpecType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionsSpecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionsSpecType IntOption
public static final OptionsSpecType LongOption
public static final OptionsSpecType BoolOption
public static final OptionsSpecType StringOption
public static final OptionsSpecType StringArrayOption
public static OptionsSpecType[] values()
for (OptionsSpecType c : OptionsSpecType.values()) System.out.println(c);
public static OptionsSpecType 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 nullCopyright © 2017 Perforce Software. All Rights Reserved.