public enum UserType extends Enum<UserType>
| Enum Constant and Description |
|---|
ANONYMOUS_USER |
APPLICATION_USER |
HUMAN_USER |
SERVER_USER |
SINGLE_SIGNON_USER |
| Modifier and Type | Method and Description |
|---|---|
static UserType |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static UserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserType HUMAN_USER
public static final UserType SINGLE_SIGNON_USER
public static final UserType APPLICATION_USER
public static final UserType ANONYMOUS_USER
public static final UserType SERVER_USER
public static UserType[] values()
for (UserType c : UserType.values()) System.out.println(c);
public static UserType 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 String getValue()
Copyright © 2021. All rights reserved.