public static enum ArgSpec.AF extends Enum<ArgSpec.AF>
Enum Constant and Description |
---|
KEY |
MANDATORY |
MANDATORY2 |
OPTIONAL |
REST |
REST_KEY |
Modifier and Type | Method and Description |
---|---|
static ArgSpec.AF |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArgSpec.AF[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArgSpec.AF MANDATORY
public static final ArgSpec.AF OPTIONAL
public static final ArgSpec.AF MANDATORY2
public static final ArgSpec.AF REST
public static final ArgSpec.AF KEY
public static final ArgSpec.AF REST_KEY
public static ArgSpec.AF[] values()
for (ArgSpec.AF c : ArgSpec.AF.values()) System.out.println(c);
public static ArgSpec.AF 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 © 2022. All rights reserved.