public enum PlacesOfInterestOperandCategory extends Enum<PlacesOfInterestOperandCategory>
Java class for PlacesOfInterestOperand.Category.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PlacesOfInterestOperand.Category">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="AIRPORT"/>
<enumeration value="DOWNTOWN"/>
<enumeration value="UNIVERSITY"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AIRPORT |
DOWNTOWN |
UNIVERSITY |
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static PlacesOfInterestOperandCategory |
fromValue(String v) |
String |
value() |
static PlacesOfInterestOperandCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlacesOfInterestOperandCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlacesOfInterestOperandCategory AIRPORT
public static final PlacesOfInterestOperandCategory DOWNTOWN
public static final PlacesOfInterestOperandCategory UNIVERSITY
public static final PlacesOfInterestOperandCategory UNKNOWN
public static PlacesOfInterestOperandCategory[] values()
for (PlacesOfInterestOperandCategory c : PlacesOfInterestOperandCategory.values()) System.out.println(c);
public static PlacesOfInterestOperandCategory 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 value()
public static PlacesOfInterestOperandCategory fromValue(String v)
Copyright © 2023. All rights reserved.