public enum JoseFormat extends Enum<JoseFormat>
| Enum Constant and Description | 
|---|
COMPACT
JOSE Compact representation 
 | 
JSON
JOSE JSON representation: supporting this format is optional 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static JoseFormat | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static JoseFormat[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final JoseFormat COMPACT
public static final JoseFormat JSON
public static JoseFormat[] values()
for (JoseFormat c : JoseFormat.values()) System.out.println(c);
public static JoseFormat 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 nullCopyright © 2018 JBoss by Red Hat. All rights reserved.