public static enum Event.Category extends Enum<Event.Category>
Enum Constant and Description |
---|
PROTOCOL |
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 PROTOCOL
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 © 2014 The Apache Software Foundation. All rights reserved.