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