@ThreadSafe public enum PersistenceState extends Enum<PersistenceState>
Enum Constant and Description |
---|
LOST |
NOT_PERSISTED |
PERSISTED |
TO_BE_PERSISTED |
Modifier and Type | Method and Description |
---|---|
static PersistenceState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersistenceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistenceState NOT_PERSISTED
public static final PersistenceState TO_BE_PERSISTED
public static final PersistenceState PERSISTED
public static final PersistenceState LOST
public static PersistenceState[] values()
for (PersistenceState c : PersistenceState.values()) System.out.println(c);
public static PersistenceState 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 © 2023. All Rights Reserved.