public enum RecordState extends Enum<RecordState>
| Enum Constant and Description |
|---|
Deleted |
Initalizing |
Modified |
New |
Persisted |
| Modifier and Type | Method and Description |
|---|---|
static RecordState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordState Deleted
public static final RecordState Modified
public static final RecordState New
public static final RecordState Persisted
public static final RecordState Initalizing
public static RecordState[] values()
for (RecordState c : RecordState.values()) System.out.println(c);
public static RecordState 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 © 2015 Revolution Systems Inc.. All rights reserved.