public static enum Location.BoxType extends java.lang.Enum<Location.BoxType>
Enum Constant and Description |
---|
CALLER_SERVICE |
CONTEST |
DETACHED |
FACILITY |
NON_PERSONNEL_UNIT |
REMITTANCE |
SCHOOL |
Modifier and Type | Method and Description |
---|---|
static Location.BoxType |
forValue(java.lang.String value) |
java.lang.String |
toString() |
static Location.BoxType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Location.BoxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Location.BoxType FACILITY
public static final Location.BoxType CONTEST
public static final Location.BoxType DETACHED
public static final Location.BoxType NON_PERSONNEL_UNIT
public static final Location.BoxType SCHOOL
public static final Location.BoxType REMITTANCE
public static final Location.BoxType CALLER_SERVICE
public static Location.BoxType[] values()
for (Location.BoxType c : Location.BoxType.values()) System.out.println(c);
public static Location.BoxType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Location.BoxType>
public static Location.BoxType forValue(java.lang.String value)