public enum RestoreTier extends Enum<RestoreTier>
| Enum Constant and Description |
|---|
RESTORE_TIER_BULK
The restore job will be done in ten hours.
|
RESTORE_TIER_EXPEDITED
The restore job will be done in one hour.
|
RESTORE_TIER_STANDARD
The restore job will be done in five hours.
|
| Modifier and Type | Method and Description |
|---|---|
static RestoreTier |
parse(String tier) |
String |
toString() |
static RestoreTier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestoreTier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestoreTier RESTORE_TIER_EXPEDITED
public static final RestoreTier RESTORE_TIER_STANDARD
public static final RestoreTier RESTORE_TIER_BULK
public static RestoreTier[] values()
for (RestoreTier c : RestoreTier.values()) System.out.println(c);
public static RestoreTier 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 toString()
toString in class Enum<RestoreTier>public static RestoreTier parse(String tier)
Copyright © 2021. All Rights Reserved.