public enum ResumedDetail extends java.lang.Enum<ResumedDetail> implements DomainEventDetail
Enum Constant and Description |
---|
FROM_SNAPSHOT
Resumed from snapshot.
|
MIGRATED
Resumed for completion of migration.
|
UNKNOWN |
UNPAUSED
Normal resume due to admin unpause.
|
Modifier and Type | Method and Description |
---|---|
static ResumedDetail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResumedDetail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResumedDetail UNPAUSED
public static final ResumedDetail MIGRATED
public static final ResumedDetail FROM_SNAPSHOT
public static final ResumedDetail UNKNOWN
public static ResumedDetail[] values()
for (ResumedDetail c : ResumedDetail.values()) System.out.println(c);
public static ResumedDetail 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 null