public static enum Event.EventPrivacy extends java.lang.Enum<Event.EventPrivacy>
| Modifier and Type | Method and Description |
|---|---|
static Event.EventPrivacy |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static Event.EventPrivacy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Event.EventPrivacy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.EventPrivacy OPEN
public static final Event.EventPrivacy SECRET
public static final Event.EventPrivacy FRIENDS
public static final Event.EventPrivacy CLOSED
public static Event.EventPrivacy[] values()
for (Event.EventPrivacy c : Event.EventPrivacy.values()) System.out.println(c);
public static Event.EventPrivacy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public static Event.EventPrivacy fromValue(java.lang.String value)