public static enum FacebookDialog.OpenGraphActionDialogFeature extends Enum<FacebookDialog.OpenGraphActionDialogFeature>
FacebookDialog.canPresentOpenGraphActionDialog(android.content.Context,
com.facebook.widget.FacebookDialog.OpenGraphActionDialogFeature...)
to determine whether the version of the Facebook application installed on the user's device is recent
enough to support specific features, which in turn may be used to determine which UI, etc., to present to the
user.Enum Constant and Description |
---|
OG_ACTION_DIALOG
Indicates whether the native Open Graph action dialog itself is supported by the installed version of the
Facebook application.
|
Modifier and Type | Method and Description |
---|---|
int |
getMinVersion()
This method is for internal use only.
|
static FacebookDialog.OpenGraphActionDialogFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacebookDialog.OpenGraphActionDialogFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacebookDialog.OpenGraphActionDialogFeature OG_ACTION_DIALOG
public static FacebookDialog.OpenGraphActionDialogFeature[] values()
for (FacebookDialog.OpenGraphActionDialogFeature c : FacebookDialog.OpenGraphActionDialogFeature.values()) System.out.println(c);
public static FacebookDialog.OpenGraphActionDialogFeature 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 int getMinVersion()