Package com.acrolinx.client.sdk
Enum SignInSuccess.AuthorizationType
- java.lang.Object
-
- java.lang.Enum<SignInSuccess.AuthorizationType>
-
- com.acrolinx.client.sdk.SignInSuccess.AuthorizationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SignInSuccess.AuthorizationType>
- Enclosing class:
- SignInSuccess
public static enum SignInSuccess.AuthorizationType extends java.lang.Enum<SignInSuccess.AuthorizationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACROLINX_SIGN_IN
ACROLINX_SSO
ACROLINX_TOKEN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SignInSuccess.AuthorizationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SignInSuccess.AuthorizationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACROLINX_SSO
public static final SignInSuccess.AuthorizationType ACROLINX_SSO
-
ACROLINX_SIGN_IN
public static final SignInSuccess.AuthorizationType ACROLINX_SIGN_IN
-
ACROLINX_TOKEN
public static final SignInSuccess.AuthorizationType ACROLINX_TOKEN
-
-
Method Detail
-
values
public static SignInSuccess.AuthorizationType[] 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 (SignInSuccess.AuthorizationType c : SignInSuccess.AuthorizationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SignInSuccess.AuthorizationType 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 namejava.lang.NullPointerException
- if the argument is null
-
-