public enum RehydrationStatus extends Enum<RehydrationStatus>
| Enum Constant and Description |
|---|
PENDING_TO_COOL
The blob is being rehydrated to cool storage.
|
PENDING_TO_HOT
The blob is being rehydrated to hot storage.
|
UNKNOWN
The rehydration status is not recognized by this version of the library.
|
| Modifier and Type | Method and Description |
|---|---|
static RehydrationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RehydrationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RehydrationStatus UNKNOWN
public static final RehydrationStatus PENDING_TO_HOT
public static final RehydrationStatus PENDING_TO_COOL
public static RehydrationStatus[] values()
for (RehydrationStatus c : RehydrationStatus.values()) System.out.println(c);
public static RehydrationStatus 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 © 2018. All Rights Reserved.