public static enum Event.EnumType extends Enum<Event.EnumType>
| Enum Constant and Description |
|---|
VALUE_COMMUNITY |
VALUE_FRIENDS |
VALUE_GROUP |
VALUE_PRIVATE |
VALUE_PUBLIC |
VALUE_WORK_COMPANY |
| 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.
|
@SerializedName(value="community") public static final Event.EnumType VALUE_COMMUNITY
@SerializedName(value="friends") public static final Event.EnumType VALUE_FRIENDS
@SerializedName(value="group") public static final Event.EnumType VALUE_GROUP
@SerializedName(value="private") public static final Event.EnumType VALUE_PRIVATE
@SerializedName(value="public") public static final Event.EnumType VALUE_PUBLIC
@SerializedName(value="work_company") public static final Event.EnumType VALUE_WORK_COMPANY
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 © 2024. All rights reserved.