-
Notifications
You must be signed in to change notification settings - Fork 7
CompoundTagWrapper
The CompoundTagWrapper class does not contain any accessible fields.
NBTTagCompound internal();
List<String> getOwnPropertyNames();
CompoundTagWrapper clone();
boolean hasKey(String key);
void setByte(String name, byte value);
void setShort(String name, short value);
void setInteger(String name, int value);
void setLong(String name, long value);
void setFloat(String name, float value);
void setDouble(String name, double value);
void setCompound(String name, CompoundTagWrapper wrap);
Set<String> getKeySet();
byte getByte(String name);
short getShort(String name);
int getInteger(String name);
long getLong(String name);
float getFloat(String name);
double getDouble(String name);
String getString(String name);
CompoundTagWrapper copy();
CompoundTagWrapper getCompound(String name);
The CompoundTagWrapper class can be found here.
Talecraft Scripting Wiki