public static enum Record.Status extends Enum<Record.Status>
The status of a specific operation.
| Enum Constant and Description |
|---|
FAILED
If the operation failed to be performed.
|
SUCCESSFUL
If the operation was performed successfully.
|
| Modifier and Type | Method and Description |
|---|---|
static Record.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Record.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Record.Status SUCCESSFUL
public static final Record.Status FAILED
public static Record.Status[] values()
for (Record.Status c : Record.Status.values()) System.out.println(c);
public static Record.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 © 2014. All Rights Reserved.