Package com.pingidentity.sdk
Enum AuthenticationSourceKey.Type
- java.lang.Object
-
- java.lang.Enum<AuthenticationSourceKey.Type>
-
- com.pingidentity.sdk.AuthenticationSourceKey.Type
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationSourceKey.Type>
- Enclosing class:
- AuthenticationSourceKey
public static enum AuthenticationSourceKey.Type extends Enum<AuthenticationSourceKey.Type>
The type of authentication source key. It can either be an IdP adapter or an IdP connection.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDP_ADAPTERIDP_CONNECTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticationSourceKey.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationSourceKey.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDP_ADAPTER
public static final AuthenticationSourceKey.Type IDP_ADAPTER
-
IDP_CONNECTION
public static final AuthenticationSourceKey.Type IDP_CONNECTION
-
-
Method Detail
-
values
public static AuthenticationSourceKey.Type[] 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 (AuthenticationSourceKey.Type c : AuthenticationSourceKey.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationSourceKey.Type 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
-
-