public enum LocationType extends java.lang.Enum<LocationType>
| Enum Constant and Description |
|---|
BUSINESS_ADDRESS
business Address
|
CONFERENCE_ROOM
conference Room
|
DEFAULT
default
|
GEO_COORDINATES
geo Coordinates
|
HOME_ADDRESS
home Address
|
HOTEL
hotel
|
LOCAL_BUSINESS
local Business
|
POSTAL_ADDRESS
postal Address
|
RESTAURANT
restaurant
|
STREET_ADDRESS
street Address
|
UNEXPECTED_VALUE
For LocationType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static LocationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationType DEFAULT
public static final LocationType CONFERENCE_ROOM
public static final LocationType HOME_ADDRESS
public static final LocationType BUSINESS_ADDRESS
public static final LocationType GEO_COORDINATES
public static final LocationType STREET_ADDRESS
public static final LocationType HOTEL
public static final LocationType RESTAURANT
public static final LocationType LOCAL_BUSINESS
public static final LocationType POSTAL_ADDRESS
public static final LocationType UNEXPECTED_VALUE
public static LocationType[] values()
for (LocationType c : LocationType.values()) System.out.println(c);
public static LocationType 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 null