public static enum JWK.Use extends Enum<JWK.Use>
Enum Constant and Description |
---|
ENCRYPTION |
SIG |
Modifier and Type | Method and Description |
---|---|
String |
asString() |
static JWK.Use |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JWK.Use[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JWK.Use SIG
public static final JWK.Use ENCRYPTION
public static JWK.Use[] values()
for (JWK.Use c : JWK.Use.values()) System.out.println(c);
public static JWK.Use 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 asString()
Copyright © 2019 JBoss by Red Hat. All rights reserved.