public static enum RestoreRequest.Tier extends Enum<RestoreRequest.Tier>
RestoreRequest.| Modifier and Type | Class and Description |
|---|---|
static class |
RestoreRequest.Tier.TierConverter
XML converter of
RestoreRequest.Tier. |
| Modifier and Type | Method and Description |
|---|---|
static RestoreRequest.Tier |
fromString(String tierString)
Returns Tier of given string.
|
String |
toString() |
static RestoreRequest.Tier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestoreRequest.Tier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestoreRequest.Tier STANDARD
public static final RestoreRequest.Tier BULK
public static final RestoreRequest.Tier EXPEDITED
public static RestoreRequest.Tier[] values()
for (RestoreRequest.Tier c : RestoreRequest.Tier.values()) System.out.println(c);
public static RestoreRequest.Tier 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<RestoreRequest.Tier>public static RestoreRequest.Tier fromString(String tierString)