public static enum JWE.CompressionAlgorithm extends Enum<JWE.CompressionAlgorithm>
Enum Constant and Description |
---|
DEFLATE |
Modifier and Type | Method and Description |
---|---|
String |
toToken() |
static JWE.CompressionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JWE.CompressionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JWE.CompressionAlgorithm DEFLATE
public static JWE.CompressionAlgorithm[] values()
for (JWE.CompressionAlgorithm c : JWE.CompressionAlgorithm.values()) System.out.println(c);
public static JWE.CompressionAlgorithm valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toToken()
Copyright © 2019. All rights reserved.