@Generated public enum Category extends Enum<Category>
| Enum Constant and Description |
|---|
ADVERTISING_AND_MARKETING |
CLIMATE_AND_ENVIRONMENT |
COMMERCE |
DEMOGRAPHICS |
ECONOMICS |
EDUCATION |
ENERGY |
FINANCIAL |
GAMING |
GEOSPATIAL |
HEALTH |
LOOKUP_TABLES |
MANUFACTURING |
MEDIA |
OTHER |
PUBLIC_SECTOR |
RETAIL |
SCIENCE_AND_RESEARCH |
SECURITY |
SPORTS |
TRANSPORTATION_AND_LOGISTICS |
TRAVEL_AND_TOURISM |
| Modifier and Type | Method and Description |
|---|---|
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category ADVERTISING_AND_MARKETING
public static final Category CLIMATE_AND_ENVIRONMENT
public static final Category COMMERCE
public static final Category DEMOGRAPHICS
public static final Category ECONOMICS
public static final Category EDUCATION
public static final Category ENERGY
public static final Category FINANCIAL
public static final Category GAMING
public static final Category GEOSPATIAL
public static final Category HEALTH
public static final Category LOOKUP_TABLES
public static final Category MANUFACTURING
public static final Category MEDIA
public static final Category OTHER
public static final Category PUBLIC_SECTOR
public static final Category RETAIL
public static final Category SCIENCE_AND_RESEARCH
public static final Category SECURITY
public static final Category SPORTS
public static final Category TRANSPORTATION_AND_LOGISTICS
public static final Category TRAVEL_AND_TOURISM
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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 nullCopyright © 2024. All rights reserved.