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 |
---|---|
protected static RehydrationStatus |
parse(String rehydrationStatusString)
Parses a rehydration status from the given string.
|
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 nullprotected static RehydrationStatus parse(String rehydrationStatusString)
rehydrationStatusString
- A String
which represents the rehydration status to string.RehydrationStatus
value that represents the rehydration status of the blob.Copyright © 2019. All rights reserved.