public enum CallerType extends Enum<CallerType>
| Modifier and Type | Method and Description |
|---|---|
static CallerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallerType USER
public static final CallerType ROLE
public static final CallerType SERVICE
public static CallerType[] values()
for (CallerType c : CallerType.values()) System.out.println(c);
public static CallerType 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 © 2017. All Rights Reserved.