public enum PackType extends Enum<PackType>
| Enum Constant and Description |
|---|
CLIENT_DATA |
DATA |
INTERFACE |
INVALID |
MANDATORY |
PLUGIN |
RESOURCES |
WORLD_TEMPLATE |
| Modifier and Type | Method and Description |
|---|---|
static PackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackType INVALID
public static final PackType RESOURCES
public static final PackType DATA
public static final PackType PLUGIN
public static final PackType CLIENT_DATA
public static final PackType INTERFACE
public static final PackType MANDATORY
public static final PackType WORLD_TEMPLATE
public static PackType[] values()
for (PackType c : PackType.values()) System.out.println(c);
public static PackType 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 © 2020. All rights reserved.