public enum CategoryEventEnum extends java.lang.Enum<CategoryEventEnum>
Enum Constant and Description |
---|
ARTS |
CAUSES |
CINEMA |
COMEDY |
CRAFTS |
DANCE |
DRINKS |
FITNESS |
FOOD |
GAMES |
GARDENING |
HEALTH |
HOME |
LITERATURE |
MUSIC |
NONE |
OTHER |
PARTY |
PROFESSIONAL_NETWORKS |
RELIGION |
SHOPPING |
SPORTS |
WELLNESS |
Modifier and Type | Method and Description |
---|---|
static CategoryEventEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CategoryEventEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryEventEnum NONE
public static final CategoryEventEnum ARTS
public static final CategoryEventEnum CAUSES
public static final CategoryEventEnum COMEDY
public static final CategoryEventEnum CRAFTS
public static final CategoryEventEnum DANCE
public static final CategoryEventEnum DRINKS
public static final CategoryEventEnum CINEMA
public static final CategoryEventEnum FITNESS
public static final CategoryEventEnum FOOD
public static final CategoryEventEnum GAMES
public static final CategoryEventEnum GARDENING
public static final CategoryEventEnum HEALTH
public static final CategoryEventEnum HOME
public static final CategoryEventEnum LITERATURE
public static final CategoryEventEnum MUSIC
public static final CategoryEventEnum PROFESSIONAL_NETWORKS
public static final CategoryEventEnum PARTY
public static final CategoryEventEnum RELIGION
public static final CategoryEventEnum SHOPPING
public static final CategoryEventEnum SPORTS
public static final CategoryEventEnum WELLNESS
public static final CategoryEventEnum OTHER
public static CategoryEventEnum[] values()
for (CategoryEventEnum c : CategoryEventEnum.values()) System.out.println(c);
public static CategoryEventEnum 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 null