public static enum Event.Category extends Enum<Event.Category>
| Enum Constant and Description |
|---|
cinema |
internet |
literature |
music |
sports |
theater |
travels |
tv |
| Modifier and Type | Method and Description |
|---|---|
static Event.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.Category music
public static final Event.Category literature
public static final Event.Category sports
public static final Event.Category tv
public static final Event.Category cinema
public static final Event.Category internet
public static final Event.Category travels
public static final Event.Category theater
public static Event.Category[] values()
for (Event.Category c : Event.Category.values()) System.out.println(c);
public static Event.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 © 2016. All rights reserved.