public enum ObjectCreator extends Enum<ObjectCreator>
Enum Constant and Description |
---|
NMS_BLOCKPOSITION |
NMS_COMPOUNDFROMITEM |
NMS_CUSTOMDATA |
NMS_NBTTAGCOMPOUND |
Modifier and Type | Method and Description |
---|---|
Object |
getInstance(Object... args)
Creates an Object instance with given args
|
static ObjectCreator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectCreator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectCreator NMS_NBTTAGCOMPOUND
public static final ObjectCreator NMS_CUSTOMDATA
public static final ObjectCreator NMS_BLOCKPOSITION
public static final ObjectCreator NMS_COMPOUNDFROMITEM
public static ObjectCreator[] values()
for (ObjectCreator c : ObjectCreator.values()) System.out.println(c);
public static ObjectCreator 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 © 2015–2024 tr7zw. All rights reserved.