public static enum Event.EnumType extends Enum<Event.EnumType>
| Enum Constant and Description |
|---|
VALUE_COMMUNITY |
VALUE_FRIENDS |
VALUE_GROUP |
VALUE_PRIVATE |
VALUE_PUBLIC |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Event.EnumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.EnumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.EnumType VALUE_COMMUNITY
public static final Event.EnumType VALUE_FRIENDS
public static final Event.EnumType VALUE_GROUP
public static final Event.EnumType VALUE_PRIVATE
public static final Event.EnumType VALUE_PUBLIC
public static Event.EnumType[] values()
for (Event.EnumType c : Event.EnumType.values()) System.out.println(c);
public static Event.EnumType 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 nullpublic String toString()
toString in class Enum<Event.EnumType>Copyright © 2020. All rights reserved.