public enum PermissionTemplateType extends Enum<PermissionTemplateType>
Enum Constant and Description |
---|
CUSTOM
any template with permissions different than the existing predefined
templates
|
MIXED
used for aggregation of several templates with different permissions
|
PREDEFINED
predefined templates
|
Modifier and Type | Method and Description |
---|---|
static PermissionTemplateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PermissionTemplateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermissionTemplateType CUSTOM
public static final PermissionTemplateType MIXED
public static final PermissionTemplateType PREDEFINED
public static PermissionTemplateType[] values()
for (PermissionTemplateType c : PermissionTemplateType.values()) System.out.println(c);
public static PermissionTemplateType 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 © 2019. All rights reserved.