public enum Entity extends Enum<Entity>
Enum Constant and Description |
---|
ALIAS |
APPLICATION |
DIRECTORY |
GROUP |
TOKEN |
USER |
Modifier and Type | Method and Description |
---|---|
static Entity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entity USER
public static final Entity GROUP
public static final Entity TOKEN
public static final Entity DIRECTORY
public static final Entity APPLICATION
public static final Entity ALIAS
public static Entity[] values()
for (Entity c : Entity.values()) System.out.println(c);
public static Entity 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 © 2024 Atlassian. All rights reserved.