public enum EntityPermissionValue extends Enum<EntityPermissionValue>
| Enum Constant and Description |
|---|
ALL |
NO |
OWN |
OWN_GROUP |
OWN_GROUP_SHARED |
OWN_SHARED |
| Modifier and Type | Method and Description |
|---|---|
static EntityPermissionValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityPermissionValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityPermissionValue NO
public static final EntityPermissionValue OWN
public static final EntityPermissionValue OWN_SHARED
public static final EntityPermissionValue OWN_GROUP
public static final EntityPermissionValue OWN_GROUP_SHARED
public static final EntityPermissionValue ALL
public static EntityPermissionValue[] values()
for (EntityPermissionValue c : EntityPermissionValue.values()) System.out.println(c);
public static EntityPermissionValue 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 © 2023. All rights reserved.