public enum LocationType extends Enum<LocationType> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
BUSINESS_ADDRESS |
CONFERENCE_ROOM |
DEFAULT |
GEO_COORDINATES |
HOME_ADDRESS |
HOTEL |
LOCAL_BUSINESS |
POSTAL_ADDRESS |
RESTAURANT |
STREET_ADDRESS |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static LocationType |
valueOf(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 LocationType[] values()
for (LocationType c : LocationType.values()) System.out.println(c);
public static LocationType 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 nullpublic String enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2020. All rights reserved.