| Package | Description |
|---|---|
| com.sk89q.jnbt |
| Modifier and Type | Method and Description |
|---|---|
static CompoundTagBuilder |
CompoundTagBuilder.create()
Create a new builder instance.
|
CompoundTagBuilder |
CompoundTag.createBuilder()
Create a compound tag builder.
|
CompoundTagBuilder |
CompoundTagBuilder.put(String key,
Tag value)
Put the given key and tag into the compound tag.
|
CompoundTagBuilder |
CompoundTagBuilder.putAll(Map<String,? extends Tag> value)
Put all the entries from the given map into this map.
|
CompoundTagBuilder |
CompoundTagBuilder.putByte(String key,
byte value)
Put the given key and value into the compound tag as a
ByteTag. |
CompoundTagBuilder |
CompoundTagBuilder.putByteArray(String key,
byte[] value)
Put the given key and value into the compound tag as a
ByteArrayTag. |
CompoundTagBuilder |
CompoundTagBuilder.putDouble(String key,
double value)
Put the given key and value into the compound tag as a
DoubleTag. |
CompoundTagBuilder |
CompoundTagBuilder.putFloat(String key,
float value)
Put the given key and value into the compound tag as a
FloatTag. |
CompoundTagBuilder |
CompoundTagBuilder.putInt(String key,
int value)
Put the given key and value into the compound tag as an
IntTag. |
CompoundTagBuilder |
CompoundTagBuilder.putIntArray(String key,
int[] value)
Put the given key and value into the compound tag as a
IntArrayTag. |
CompoundTagBuilder |
CompoundTagBuilder.putLong(String key,
long value)
Put the given key and value into the compound tag as a
LongTag. |
CompoundTagBuilder |
CompoundTagBuilder.putShort(String key,
short value)
Put the given key and value into the compound tag as a
ShortTag. |
CompoundTagBuilder |
CompoundTagBuilder.putString(String key,
String value)
Put the given key and value into the compound tag as a
StringTag. |
Copyright © 2010-2014. All Rights Reserved.