Package lumis.socialnetworkintegration
Enum AuthenticationResponseValues
- java.lang.Object
-
- java.lang.Enum<AuthenticationResponseValues>
-
- lumis.socialnetworkintegration.AuthenticationResponseValues
-
- All Implemented Interfaces:
Serializable
,Comparable<AuthenticationResponseValues>
public enum AuthenticationResponseValues extends Enum<AuthenticationResponseValues>
Gives the enumeration of the possible values an authenticationResponse may have. This includes parameters from all possible Social Networks.- Since:
- 6.1.0
- Version:
- $Revision: 13752 $ $Date: 2011-10-13 14:10:51 -0300 (Thu, 13 Oct 2011) $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
Enum Constant Detail
-
OAuth_Verifier
public static final AuthenticationResponseValues OAuth_Verifier
Represents the oauth_verifies parameter in the authenticationResonse.- Since:
- 6.1.0
-
OAuth_Token
public static final AuthenticationResponseValues OAuth_Token
Represents the oauth_token parameter in the authenticationRespose.- Since:
- 6.1.0
-
OAuth_Token_Secret
public static final AuthenticationResponseValues OAuth_Token_Secret
Represents the oauth_token_secret parameter in the authenticationRespose.- Since:
- 6.1.0
-
UserId
public static final AuthenticationResponseValues UserId
Represents the user_id parameter in the authenticationRespose.- Since:
- 6.1.0
-
ScreenName
public static final AuthenticationResponseValues ScreenName
Represents the screen_name parameter in the authenticationRespose.- Since:
- 6.1.0
-
Access_Token
public static final AuthenticationResponseValues Access_Token
Represents the access_token parameter in the authenticationRespose.- Since:
- 6.1.0
-
Access_Token_Secret
public static final AuthenticationResponseValues Access_Token_Secret
Represents the access_token_secret parameter in the authenticationRespose.- Since:
- 6.1.0
-
-
Method Detail
-
values
public static AuthenticationResponseValues[] 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 (AuthenticationResponseValues c : AuthenticationResponseValues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationResponseValues valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-