Enum OIDCTokenSigningAlg
- java.lang.Object
-
- java.lang.Enum<OIDCTokenSigningAlg>
-
- org.apache.syncope.common.lib.types.OIDCTokenSigningAlg
-
- All Implemented Interfaces:
Serializable
,Comparable<OIDCTokenSigningAlg>
public enum OIDCTokenSigningAlg extends Enum<OIDCTokenSigningAlg>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OIDCTokenSigningAlg
valueOf(String name)
Returns the enum constant of this type with the specified name.static OIDCTokenSigningAlg[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final OIDCTokenSigningAlg none
-
RS256
public static final OIDCTokenSigningAlg RS256
-
RS384
public static final OIDCTokenSigningAlg RS384
-
RS512
public static final OIDCTokenSigningAlg RS512
-
PS256
public static final OIDCTokenSigningAlg PS256
-
PS384
public static final OIDCTokenSigningAlg PS384
-
PS512
public static final OIDCTokenSigningAlg PS512
-
ES256
public static final OIDCTokenSigningAlg ES256
-
ES384
public static final OIDCTokenSigningAlg ES384
-
ES512
public static final OIDCTokenSigningAlg ES512
-
HS256
public static final OIDCTokenSigningAlg HS256
-
HS384
public static final OIDCTokenSigningAlg HS384
-
HS512
public static final OIDCTokenSigningAlg HS512
-
-
Method Detail
-
values
public static OIDCTokenSigningAlg[] 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 (OIDCTokenSigningAlg c : OIDCTokenSigningAlg.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OIDCTokenSigningAlg 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
-
-