net.sf.f8api
Enum FacebookMethod

java.lang.Object
  extended by java.lang.Enum<FacebookMethod>
      extended by net.sf.f8api.FacebookMethod
All Implemented Interfaces:
java.io.Serializable, java.lang.CharSequence, java.lang.Comparable<FacebookMethod>

public enum FacebookMethod
extends java.lang.Enum<FacebookMethod>
implements java.lang.CharSequence


Enum Constant Summary
AUTH_CREATE_TOKEN
           
AUTH_GET_SESSION
           
EVENTS_GET
           
EVENTS_GET_MEMBERS
           
FBML_REFRESH_IMG_SRC
           
FBML_REFRESH_REF_URL
           
FEED_PUBLISH_ACTION_OF_USER
           
FEED_PUBLISH_STORY_TO_USER
           
FQL_QUERY
           
FRIENDS_ARE_FRIENDS
           
FRIENDS_GET
           
FRIENDS_GET_APP_USERS
           
FRIENDS_GET_REQUESTS
           
GROUPS_GET
           
GROUPS_GET_MEMBERS
           
NOTIFICATIONS_GET
           
NOTIFICATIONS_SEND
           
NOTIFICATIONS_SEND_REQUEST
           
PHOTOS_ADD_TAG
           
PHOTOS_CREATE_ALBUM
           
PHOTOS_GET
           
PHOTOS_GET_ALBUMS
           
PHOTOS_GET_TAGS
           
PHOTOS_UPLOAD
           
PROFILE_GET_FBML
           
PROFILE_SET_FBML
           
USERS_GET_INFO
           
USERS_GET_LOGGED_IN_USER
           
USERS_IS_APP_ADDED
           
 
Method Summary
 char charAt(int index)
           
 int length()
           
 java.lang.String methodName()
           
 int numParams()
           
 int numTotalParams()
           
static java.util.EnumSet<FacebookMethod> postAuthMethods()
           
static java.util.EnumSet<FacebookMethod> preAuthMethods()
           
 boolean requiresSession()
           
 java.lang.CharSequence subSequence(int start, int end)
           
 boolean takesFile()
           
 java.lang.String toString()
           
static FacebookMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FacebookMethod[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AUTH_CREATE_TOKEN

public static final FacebookMethod AUTH_CREATE_TOKEN

AUTH_GET_SESSION

public static final FacebookMethod AUTH_GET_SESSION

FQL_QUERY

public static final FacebookMethod FQL_QUERY

EVENTS_GET

public static final FacebookMethod EVENTS_GET

EVENTS_GET_MEMBERS

public static final FacebookMethod EVENTS_GET_MEMBERS

FRIENDS_GET

public static final FacebookMethod FRIENDS_GET

FRIENDS_GET_APP_USERS

public static final FacebookMethod FRIENDS_GET_APP_USERS

FRIENDS_GET_REQUESTS

public static final FacebookMethod FRIENDS_GET_REQUESTS

FRIENDS_ARE_FRIENDS

public static final FacebookMethod FRIENDS_ARE_FRIENDS

USERS_GET_INFO

public static final FacebookMethod USERS_GET_INFO

USERS_GET_LOGGED_IN_USER

public static final FacebookMethod USERS_GET_LOGGED_IN_USER

USERS_IS_APP_ADDED

public static final FacebookMethod USERS_IS_APP_ADDED

PHOTOS_GET

public static final FacebookMethod PHOTOS_GET

PHOTOS_GET_ALBUMS

public static final FacebookMethod PHOTOS_GET_ALBUMS

PHOTOS_GET_TAGS

public static final FacebookMethod PHOTOS_GET_TAGS

PHOTOS_CREATE_ALBUM

public static final FacebookMethod PHOTOS_CREATE_ALBUM

PHOTOS_ADD_TAG

public static final FacebookMethod PHOTOS_ADD_TAG

PHOTOS_UPLOAD

public static final FacebookMethod PHOTOS_UPLOAD

NOTIFICATIONS_GET

public static final FacebookMethod NOTIFICATIONS_GET

NOTIFICATIONS_SEND

public static final FacebookMethod NOTIFICATIONS_SEND

NOTIFICATIONS_SEND_REQUEST

public static final FacebookMethod NOTIFICATIONS_SEND_REQUEST

GROUPS_GET

public static final FacebookMethod GROUPS_GET

GROUPS_GET_MEMBERS

public static final FacebookMethod GROUPS_GET_MEMBERS

PROFILE_SET_FBML

public static final FacebookMethod PROFILE_SET_FBML

PROFILE_GET_FBML

public static final FacebookMethod PROFILE_GET_FBML

FBML_REFRESH_REF_URL

public static final FacebookMethod FBML_REFRESH_REF_URL

FBML_REFRESH_IMG_SRC

public static final FacebookMethod FBML_REFRESH_IMG_SRC

FEED_PUBLISH_ACTION_OF_USER

public static final FacebookMethod FEED_PUBLISH_ACTION_OF_USER

FEED_PUBLISH_STORY_TO_USER

public static final FacebookMethod FEED_PUBLISH_STORY_TO_USER
Method Detail

values

public static FacebookMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FacebookMethod c : FacebookMethod.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FacebookMethod valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

preAuthMethods

public static java.util.EnumSet<FacebookMethod> preAuthMethods()

postAuthMethods

public static java.util.EnumSet<FacebookMethod> postAuthMethods()

methodName

public java.lang.String methodName()

numParams

public int numParams()

requiresSession

public boolean requiresSession()

numTotalParams

public int numTotalParams()

takesFile

public boolean takesFile()

charAt

public char charAt(int index)
Specified by:
charAt in interface java.lang.CharSequence

length

public int length()
Specified by:
length in interface java.lang.CharSequence

subSequence

public java.lang.CharSequence subSequence(int start,
                                          int end)
Specified by:
subSequence in interface java.lang.CharSequence

toString

public java.lang.String toString()
Specified by:
toString in interface java.lang.CharSequence
Overrides:
toString in class java.lang.Enum<FacebookMethod>


Copyright © 2007 Jason Thrasher. All Rights Reserved.