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