public static enum AzResult.Status extends Enum<AzResult.Status>
Enum Constant and Description |
---|
MISSING_ATTRIBUTE |
OK |
PROCESSING_ERROR |
SYNTAX_ERROR |
Modifier and Type | Method and Description |
---|---|
static AzResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzResult.Status OK
public static final AzResult.Status MISSING_ATTRIBUTE
public static final AzResult.Status PROCESSING_ERROR
public static final AzResult.Status SYNTAX_ERROR
public static AzResult.Status[] values()
for (AzResult.Status c : AzResult.Status.values()) System.out.println(c);
public static AzResult.Status 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 © 2020. All rights reserved.