public enum SessionDefaultAudience extends Enum<SessionDefaultAudience>
| Enum Constant and Description |
|---|
EVERYONE
Indicates that all Facebook users are able to see posts made by the application.
|
FRIENDS
Indicates that the user's friends are able to see posts made by the application.
|
NONE
Represents an invalid default audience value, can be used when only reading.
|
ONLY_ME
Indicates only the user is able to see posts made by the application.
|
| Modifier and Type | Method and Description |
|---|---|
static SessionDefaultAudience |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionDefaultAudience[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionDefaultAudience NONE
public static final SessionDefaultAudience ONLY_ME
public static final SessionDefaultAudience FRIENDS
public static final SessionDefaultAudience EVERYONE
public static SessionDefaultAudience[] values()
for (SessionDefaultAudience c : SessionDefaultAudience.values()) System.out.println(c);
public static SessionDefaultAudience 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 © 2013. All Rights Reserved.