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