public enum RestoreTierEnum extends Enum<RestoreTierEnum>
Enum Constant and Description |
---|
BULK
Deprecated.
|
EXPEDITED
Expedited restoration, which restores an object in 1 to 5 minutes
|
STANDARD
Standard restoration, which restores the object in 3 to 5 hours
|
Modifier and Type | Method and Description |
---|---|
String |
getCode() |
static RestoreTierEnum |
getValueFromCode(String code) |
static RestoreTierEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestoreTierEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestoreTierEnum EXPEDITED
public static final RestoreTierEnum STANDARD
@Deprecated public static final RestoreTierEnum BULK
public static RestoreTierEnum[] values()
for (RestoreTierEnum c : RestoreTierEnum.values()) System.out.println(c);
public static RestoreTierEnum 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 nullpublic String getCode()
public static RestoreTierEnum getValueFromCode(String code)
Copyright © 2019. All rights reserved.