| Enum Constant and Description |
|---|
APP
An Cloud Foundry application entity
|
OAUTH_CLIENT
A UAA client entity, as can be used with a client credentials grant
|
USER
A UAA user entity, as can be used with a password grant
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getType()
Get the entity type.
|
java.lang.String |
toString() |
static ActorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActorType APP
public static final ActorType USER
public static final ActorType OAUTH_CLIENT
public static ActorType[] values()
for (ActorType c : ActorType.values()) System.out.println(c);
public static ActorType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getType()
public java.lang.String toString()
toString in class java.lang.Enum<ActorType>