|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<AuthenticationResponseValues> lumis.socialnetworkintegration.AuthenticationResponseValues
public enum AuthenticationResponseValues
Gives the enumeration of the possible values an authenticationResponse may have. This includes parameters from all possible Social Networks.
Enum Constant Summary | |
---|---|
Access_Token
Represents the access_token parameter in the authenticationRespose. |
|
Access_Token_Secret
Represents the access_token_secret parameter in the authenticationRespose. |
|
OAuth_Token
Represents the oauth_token parameter in the authenticationRespose. |
|
OAuth_Token_Secret
Represents the oauth_token_secret parameter in the authenticationRespose. |
|
OAuth_Verifier
Represents the oauth_verifies parameter in the authenticationResonse. |
|
ScreenName
Represents the screen_name parameter in the authenticationRespose. |
|
UserId
Represents the user_id parameter in the authenticationRespose. |
Method Summary | |
---|---|
static AuthenticationResponseValues |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AuthenticationResponseValues[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AuthenticationResponseValues OAuth_Verifier
public static final AuthenticationResponseValues OAuth_Token
public static final AuthenticationResponseValues OAuth_Token_Secret
public static final AuthenticationResponseValues UserId
public static final AuthenticationResponseValues ScreenName
public static final AuthenticationResponseValues Access_Token
public static final AuthenticationResponseValues Access_Token_Secret
Method Detail |
---|
public static AuthenticationResponseValues[] values()
for (AuthenticationResponseValues c : AuthenticationResponseValues.values()) System.out.println(c);
public static AuthenticationResponseValues valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |