Enum AuthenticationResponseValues

    • 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 name
        NullPointerException - if the argument is null