public static enum InputArgument.Status extends java.lang.Enum<InputArgument.Status>
| Enum Constant and Description |
|---|
NOT_PRESENT
The argument was not provided.
|
PRESENT
The argument was provided.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isPresent()
Checks if the argument was provided.
|
static InputArgument.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputArgument.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputArgument.Status PRESENT
public static final InputArgument.Status NOT_PRESENT
public static InputArgument.Status[] values()
for (InputArgument.Status c : InputArgument.Status.values()) System.out.println(c);
public static InputArgument.Status 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 nullpublic boolean isPresent()