public static enum Location.AddressUsage extends java.lang.Enum<Location.AddressUsage>
Enum Constant and Description |
---|
BUSINESS |
RESIDENTIAL |
Modifier and Type | Method and Description |
---|---|
static Location.AddressUsage |
forValue(java.lang.String value) |
java.lang.String |
toString() |
static Location.AddressUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Location.AddressUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Location.AddressUsage RESIDENTIAL
public static final Location.AddressUsage BUSINESS
public static Location.AddressUsage[] values()
for (Location.AddressUsage c : Location.AddressUsage.values()) System.out.println(c);
public static Location.AddressUsage 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.AddressUsage>
public static Location.AddressUsage forValue(java.lang.String value)