public static enum Category.Global extends java.lang.Enum<Category.Global>
CategoryFilter.add(Category.Global)
Enum Constant and Description |
---|
ACCOMMODATION
The accommodation category.
|
ADMINISTRATIVE_AREAS_BUILDINGS
The administrative-areas-buildings category.
|
BUSINESS_SERVICES
The business-services category.
|
EAT_DRINK
The eat-drink category.
|
FACILITIES
The facilities category.
|
GOING_OUT
The going-out category.
|
LEISURE_OUTDOOR
The leisure-outdoor category.
|
NATURAL_GEOGRAPHICAL
The natural-geographical category.
|
SHOPPING
The shopping category.
|
SIGHTS_MUSEUMS
The sights-museums category.
|
TRANSPORT
The transport category.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns a stringified
Category . |
static Category.Global |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Category.Global[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category.Global ACCOMMODATION
public static final Category.Global ADMINISTRATIVE_AREAS_BUILDINGS
public static final Category.Global BUSINESS_SERVICES
public static final Category.Global EAT_DRINK
public static final Category.Global FACILITIES
public static final Category.Global GOING_OUT
public static final Category.Global LEISURE_OUTDOOR
public static final Category.Global NATURAL_GEOGRAPHICAL
public static final Category.Global SHOPPING
public static final Category.Global SIGHTS_MUSEUMS
public static final Category.Global TRANSPORT
public static Category.Global[] values()
for (Category.Global c : Category.Global.values()) System.out.println(c);
public static Category.Global 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()
Category
.toString
in class java.lang.Enum<Category.Global>
Category