public static enum Enums.PermissionMode extends Enum<Enums.PermissionMode>
Enum Constant and Description |
---|
Allowed
Allowed
|
Default
Default
|
Disabled
Disabled
|
Modifier and Type | Method and Description |
---|---|
static Enums.PermissionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Enums.PermissionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.PermissionMode Disabled
public static final Enums.PermissionMode Allowed
public static final Enums.PermissionMode Default
public static Enums.PermissionMode[] values()
for (Enums.PermissionMode c : Enums.PermissionMode.values()) System.out.println(c);
public static Enums.PermissionMode 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.