public static enum JsonWebKey.OutputControlLevel extends Enum<JsonWebKey.OutputControlLevel>
| Enum Constant and Description |
|---|
INCLUDE_PRIVATE |
INCLUDE_SYMMETRIC |
PUBLIC_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static JsonWebKey.OutputControlLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonWebKey.OutputControlLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonWebKey.OutputControlLevel INCLUDE_PRIVATE
public static final JsonWebKey.OutputControlLevel INCLUDE_SYMMETRIC
public static final JsonWebKey.OutputControlLevel PUBLIC_ONLY
public static JsonWebKey.OutputControlLevel[] values()
for (JsonWebKey.OutputControlLevel c : JsonWebKey.OutputControlLevel.values()) System.out.println(c);
public static JsonWebKey.OutputControlLevel 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. All rights reserved.