public static enum UPSQuote.Assessment extends Enum<UPSQuote.Assessment>
| Modifier and Type | Method and Description |
|---|---|
static UPSQuote.Assessment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UPSQuote.Assessment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UPSQuote.Assessment VALID
public static final UPSQuote.Assessment INVALID
public static final UPSQuote.Assessment NOT_UPS
public static UPSQuote.Assessment[] values()
for (UPSQuote.Assessment c : UPSQuote.Assessment.values()) System.out.println(c);
public static UPSQuote.Assessment 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 © 2018. All rights reserved.