public enum JWAIdentifier extends java.lang.Enum<JWAIdentifier>
| Enum Constant and Description |
|---|
ES256 |
ES384 |
ES512 |
RS1 |
RS256 |
RS384 |
RS512 |
| Modifier and Type | Method and Description |
|---|---|
static JWAIdentifier |
create(java.lang.String value) |
java.lang.String |
getJcaName() |
java.lang.String |
getName() |
static JWAIdentifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JWAIdentifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JWAIdentifier RS1
public static final JWAIdentifier RS256
public static final JWAIdentifier RS384
public static final JWAIdentifier RS512
public static final JWAIdentifier ES256
public static final JWAIdentifier ES384
public static final JWAIdentifier ES512
public static JWAIdentifier[] values()
for (JWAIdentifier c : JWAIdentifier.values()) System.out.println(c);
public static JWAIdentifier valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static JWAIdentifier create(java.lang.String value)
public java.lang.String getName()
public java.lang.String getJcaName()