public static enum Event.Category extends Enum<Event.Category>
| Enum Constant and Description |
|---|
BOOKS |
INTERNET |
MOVIES |
MUSIC |
SPORTS |
TELEVISION |
THEATRE |
TRAVELS |
| 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 BOOKS
public static final Event.Category INTERNET
public static final Event.Category MOVIES
public static final Event.Category MUSIC
public static final Event.Category SPORTS
public static final Event.Category TELEVISION
public static final Event.Category THEATRE
public static final Event.Category TRAVELS
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 © 2015. All rights reserved.