Package com.onslip360
Enum API.Company.Category
- java.lang.Object
-
- java.lang.Enum<API.Company.Category>
-
- com.onslip360.API.Company.Category
-
- All Implemented Interfaces:
Serializable
,Comparable<API.Company.Category>
- Enclosing class:
- API.Company
public static enum API.Company.Category extends Enum<API.Company.Category>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.Company.Category
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.Company.Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE_LIFE
public static final API.Company.Category ACTIVE_LIFE
-
ARTS_AND_ENTERTAINMENT
public static final API.Company.Category ARTS_AND_ENTERTAINMENT
-
AUTOMOTIVE
public static final API.Company.Category AUTOMOTIVE
-
BEAUTY_AND_SPAS
public static final API.Company.Category BEAUTY_AND_SPAS
-
EDUCATION
public static final API.Company.Category EDUCATION
-
EVENT_SERVICES
public static final API.Company.Category EVENT_SERVICES
-
FOOD
public static final API.Company.Category FOOD
-
HEALTH_AND_MEDICAL
public static final API.Company.Category HEALTH_AND_MEDICAL
-
HOME_SERVICES
public static final API.Company.Category HOME_SERVICES
-
HOTELS_AND_TRAVEL
public static final API.Company.Category HOTELS_AND_TRAVEL
-
LOCAL_SERVICES
public static final API.Company.Category LOCAL_SERVICES
-
NIGHTLIFE
public static final API.Company.Category NIGHTLIFE
-
OTHER
public static final API.Company.Category OTHER
-
PETS
public static final API.Company.Category PETS
-
PROFESSIONAL_SERVICES
public static final API.Company.Category PROFESSIONAL_SERVICES
-
PUBLIC_SERVICES
public static final API.Company.Category PUBLIC_SERVICES
-
RELIGIOUS_ORGANIZATIONS
public static final API.Company.Category RELIGIOUS_ORGANIZATIONS
-
RESTAURANTS
public static final API.Company.Category RESTAURANTS
-
SHOPPING
public static final API.Company.Category SHOPPING
-
__
public static final API.Company.Category __
-
-
Method Detail
-
values
public static API.Company.Category[] 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 (API.Company.Category c : API.Company.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.Company.Category valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-