public static enum FbApp.Permission extends java.lang.Enum<FbApp.Permission>
| Enum Constant and Description |
|---|
EMAIL |
FRIENDS_BIRTHDAY |
PUBLISH_STREAM |
USER_BIRTHDAY |
USER_EVENTS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static FbApp.Permission |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FbApp.Permission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FbApp.Permission PUBLISH_STREAM
public static final FbApp.Permission EMAIL
public static final FbApp.Permission FRIENDS_BIRTHDAY
public static final FbApp.Permission USER_BIRTHDAY
public static final FbApp.Permission USER_EVENTS
public static FbApp.Permission[] values()
for (FbApp.Permission c : FbApp.Permission.values()) System.out.println(c);
public static FbApp.Permission 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 toString()
toString in class java.lang.Enum<FbApp.Permission>