org.opengts.extra.tables
Enum PointsOfInterest.PoiType
java.lang.Object
java.lang.Enum<PointsOfInterest.PoiType>
org.opengts.extra.tables.PointsOfInterest.PoiType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PointsOfInterest.PoiType>, EnumTools.IntValue, EnumTools.StringLocale
- Enclosing class:
- PointsOfInterest
public static enum PointsOfInterest.PoiType
- extends java.lang.Enum<PointsOfInterest.PoiType>
- implements EnumTools.StringLocale, EnumTools.IntValue
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
GENERAL
public static final PointsOfInterest.PoiType GENERAL
AUTOMOTIVE
public static final PointsOfInterest.PoiType AUTOMOTIVE
GAS_STATION
public static final PointsOfInterest.PoiType GAS_STATION
PARKING
public static final PointsOfInterest.PoiType PARKING
CAR_REPAIR
public static final PointsOfInterest.PoiType CAR_REPAIR
TOLL_STATION
public static final PointsOfInterest.PoiType TOLL_STATION
TRUCK_SCALE
public static final PointsOfInterest.PoiType TRUCK_SCALE
RR_CROSSING
public static final PointsOfInterest.PoiType RR_CROSSING
BUSINESS
public static final PointsOfInterest.PoiType BUSINESS
BANK_ATM
public static final PointsOfInterest.PoiType BANK_ATM
CLIENT_OFFICE
public static final PointsOfInterest.PoiType CLIENT_OFFICE
HOME_OFFICE
public static final PointsOfInterest.PoiType HOME_OFFICE
SAT_OFFICE
public static final PointsOfInterest.PoiType SAT_OFFICE
DISPATCH
public static final PointsOfInterest.PoiType DISPATCH
CROSS_DOCK
public static final PointsOfInterest.PoiType CROSS_DOCK
WAREHOUSE
public static final PointsOfInterest.PoiType WAREHOUSE
EDUCATION
public static final PointsOfInterest.PoiType EDUCATION
PRE_SCHOOL
public static final PointsOfInterest.PoiType PRE_SCHOOL
GRADE_SCHOOL
public static final PointsOfInterest.PoiType GRADE_SCHOOL
HIGH_SCHOOL
public static final PointsOfInterest.PoiType HIGH_SCHOOL
COLLEGE
public static final PointsOfInterest.PoiType COLLEGE
EMERGENCY
public static final PointsOfInterest.PoiType EMERGENCY
PHARMACY
public static final PointsOfInterest.PoiType PHARMACY
MED_DOCTOR
public static final PointsOfInterest.PoiType MED_DOCTOR
MED_SPECIAL
public static final PointsOfInterest.PoiType MED_SPECIAL
DENTIST
public static final PointsOfInterest.PoiType DENTIST
HOSPITAL
public static final PointsOfInterest.PoiType HOSPITAL
POLICE
public static final PointsOfInterest.PoiType POLICE
FIRE
public static final PointsOfInterest.PoiType FIRE
VETERINARIAN
public static final PointsOfInterest.PoiType VETERINARIAN
ENTERTAINMENT
public static final PointsOfInterest.PoiType ENTERTAINMENT
ART_GALLERY
public static final PointsOfInterest.PoiType ART_GALLERY
MUSEUM
public static final PointsOfInterest.PoiType MUSEUM
THEATER
public static final PointsOfInterest.PoiType THEATER
CINEMA
public static final PointsOfInterest.PoiType CINEMA
FOOD_DRINK
public static final PointsOfInterest.PoiType FOOD_DRINK
RESTAURANT
public static final PointsOfInterest.PoiType RESTAURANT
FAST_FOOD
public static final PointsOfInterest.PoiType FAST_FOOD
COFFEE_SHOP
public static final PointsOfInterest.PoiType COFFEE_SHOP
BAR
public static final PointsOfInterest.PoiType BAR
WINERY
public static final PointsOfInterest.PoiType WINERY
GOVERNMENT
public static final PointsOfInterest.PoiType GOVERNMENT
COURT_HOUSE
public static final PointsOfInterest.PoiType COURT_HOUSE
PRISON
public static final PointsOfInterest.PoiType PRISON
LODGING
public static final PointsOfInterest.PoiType LODGING
HOUSE
public static final PointsOfInterest.PoiType HOUSE
HOTEL
public static final PointsOfInterest.PoiType HOTEL
MOTEL
public static final PointsOfInterest.PoiType MOTEL
CAMPING
public static final PointsOfInterest.PoiType CAMPING
RECREATION
public static final PointsOfInterest.PoiType RECREATION
FAIRGROUNDS
public static final PointsOfInterest.PoiType FAIRGROUNDS
AMUSEMENT_PARK
public static final PointsOfInterest.PoiType AMUSEMENT_PARK
GOLF_COURSE
public static final PointsOfInterest.PoiType GOLF_COURSE
FITNESS_CLUB
public static final PointsOfInterest.PoiType FITNESS_CLUB
MARINA
public static final PointsOfInterest.PoiType MARINA
SKI_RESORT
public static final PointsOfInterest.PoiType SKI_RESORT
PUBLIC_SERVICE
public static final PointsOfInterest.PoiType PUBLIC_SERVICE
LIBRARY
public static final PointsOfInterest.PoiType LIBRARY
POST_OFFICE
public static final PointsOfInterest.PoiType POST_OFFICE
MOTOR_VEHICLE
public static final PointsOfInterest.PoiType MOTOR_VEHICLE
WIFI
public static final PointsOfInterest.PoiType WIFI
CEMETARY
public static final PointsOfInterest.PoiType CEMETARY
CHURCH
public static final PointsOfInterest.PoiType CHURCH
RAILWAY
public static final PointsOfInterest.PoiType RAILWAY
AIRPORT
public static final PointsOfInterest.PoiType AIRPORT
FERRY_TERMINAL
public static final PointsOfInterest.PoiType FERRY_TERMINAL
values
public static PointsOfInterest.PoiType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PointsOfInterest.PoiType c : PointsOfInterest.PoiType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PointsOfInterest.PoiType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getIntValue
public int getIntValue()
- Specified by:
getIntValue
in interface EnumTools.IntValue
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<PointsOfInterest.PoiType>
toString
public java.lang.String toString(java.util.Locale loc)
- Specified by:
toString
in interface EnumTools.StringLocale