public static enum VDCConfig.ContainerType extends Enum<VDCConfig.ContainerType>
| Enum Constant and Description |
|---|
SINGLE_CHEST
Only single chests.
|
SINGLE_OR_DOUBLE_CHEST
Single or double chests.
|
SINGLE_OR_DOUBLE_SHULKER_BOX
Single or double shulker boxes.
|
SINGLE_SHULKER_BOX
Only single shulker boxes.
|
| Modifier and Type | Method and Description |
|---|---|
static VDCConfig.ContainerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VDCConfig.ContainerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VDCConfig.ContainerType SINGLE_CHEST
public static final VDCConfig.ContainerType SINGLE_OR_DOUBLE_CHEST
public static final VDCConfig.ContainerType SINGLE_SHULKER_BOX
public static final VDCConfig.ContainerType SINGLE_OR_DOUBLE_SHULKER_BOX
public static VDCConfig.ContainerType[] values()
for (VDCConfig.ContainerType c : VDCConfig.ContainerType.values()) System.out.println(c);
public static VDCConfig.ContainerType 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 null