public enum Tier extends Enum<Tier>
| Enum Constant and Description |
|---|
Accelerated |
Bulk |
Expedited |
Standard |
| Modifier and Type | Method and Description |
|---|---|
static Tier |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static Tier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tier Accelerated
public static final Tier Standard
public static final Tier Bulk
public static final Tier Expedited
public static Tier[] values()
for (Tier c : Tier.values()) System.out.println(c);
public static 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 nullCopyright © 2025. All rights reserved.