Skip navigation links
B C D E F G I L N O R S T W X 

B

ByteArrayTag - Class in org.jnbt
The TAG_Byte_Array tag.
ByteArrayTag(String, byte[]) - Constructor for class org.jnbt.ByteArrayTag
Creates the tag.
ByteTag - Class in org.jnbt
The TAG_Byte tag.
ByteTag(String, byte) - Constructor for class org.jnbt.ByteTag
Creates the tag.

C

CHARSET - Static variable in class org.jnbt.NBTConstants
The character set used by NBT (UTF-8).
clone() - Method in class org.jnbt.ByteArrayTag
 
clone() - Method in class org.jnbt.CompoundTag
 
clone() - Method in class org.jnbt.IntArrayTag
 
clone() - Method in class org.jnbt.ListTag
 
clone() - Method in class org.jnbt.LongArrayTag
 
clone() - Method in class org.jnbt.Tag
 
close() - Method in class org.jnbt.NBTInputStream
 
close() - Method in class org.jnbt.NBTOutputStream
 
CompoundTag - Class in org.jnbt
The TAG_Compound tag.
CompoundTag(String, Map<String, Tag>) - Constructor for class org.jnbt.CompoundTag
Creates the tag.
containsTag(String) - Method in class org.jnbt.CompoundTag
 

D

DoubleTag - Class in org.jnbt
The TAG_Double tag.
DoubleTag(String, double) - Constructor for class org.jnbt.DoubleTag
Creates the tag.

E

EndTag - Class in org.jnbt
The TAG_End tag.
EndTag() - Constructor for class org.jnbt.EndTag
Creates the tag.

F

FloatTag - Class in org.jnbt
The TAG_Float tag.
FloatTag(String, float) - Constructor for class org.jnbt.FloatTag
Creates the tag.
fromXML(Reader) - Static method in class org.jnbt.XMLTransformer
 

G

getName() - Method in class org.jnbt.Tag
Gets the name of this tag.
getTag(String) - Method in class org.jnbt.CompoundTag
 
getType() - Method in class org.jnbt.ListTag
Gets the type of item in this list.
getTypeClass(int) - Static method in class org.jnbt.NBTUtils
Gets the class of a type of tag.
getTypeCode(Class<? extends Tag>) - Static method in class org.jnbt.NBTUtils
Gets the type code of a tag class.
getTypeName(Class<? extends Tag>) - Static method in class org.jnbt.NBTUtils
Gets the type name of a tag.
getValue() - Method in class org.jnbt.ByteArrayTag
 
getValue() - Method in class org.jnbt.ByteTag
 
getValue() - Method in class org.jnbt.CompoundTag
 
getValue() - Method in class org.jnbt.DoubleTag
 
getValue() - Method in class org.jnbt.FloatTag
 
getValue() - Method in class org.jnbt.IntArrayTag
 
getValue() - Method in class org.jnbt.IntTag
 
getValue() - Method in class org.jnbt.ListTag
 
getValue() - Method in class org.jnbt.LongArrayTag
 
getValue() - Method in class org.jnbt.LongTag
 
getValue() - Method in class org.jnbt.ShortTag
 
getValue() - Method in class org.jnbt.StringTag
 

I

IntArrayTag - Class in org.jnbt
The TAG_Int_Array tag.
IntArrayTag(String, int[]) - Constructor for class org.jnbt.IntArrayTag
Creates the tag.
IntTag - Class in org.jnbt
The TAG_Int tag.
IntTag(String, int) - Constructor for class org.jnbt.IntTag
Creates the tag.
intValue() - Method in class org.jnbt.ByteTag
 
intValue() - Method in class org.jnbt.IntTag
 
intValue() - Method in class org.jnbt.LongTag
 
intValue() - Method in class org.jnbt.NumberTag
Get the value as an int.
intValue() - Method in class org.jnbt.ShortTag
 

L

ListTag<T extends Tag> - Class in org.jnbt
The TAG_List tag.
ListTag(String, Class<T>, List<T>) - Constructor for class org.jnbt.ListTag
Creates the tag.
LongArrayTag - Class in org.jnbt
The TAG_Long_Array tag.
LongArrayTag(String, long[]) - Constructor for class org.jnbt.LongArrayTag
Creates the tag.
LongTag - Class in org.jnbt
The TAG_Long tag.
LongTag(String, long) - Constructor for class org.jnbt.LongTag
Creates the tag.
longValue() - Method in class org.jnbt.LongTag
 
longValue() - Method in class org.jnbt.NumberTag
 

N

NBTConstants - Class in org.jnbt
A class which holds constant values.
NBTInputStream - Class in org.jnbt
This class reads NBT, or Named Binary Tag streams, and produces an object graph of subclasses of the Tag object.
NBTInputStream(InputStream) - Constructor for class org.jnbt.NBTInputStream
Creates a new NBTInputStream, which will source its data from the specified input stream, which is assumed to contain big endian data, or if the input stream is already a DataInput stream, the stream's default byte order.
NBTInputStream(InputStream, boolean) - Constructor for class org.jnbt.NBTInputStream
Creates a new NBTInputStream, which will source its data from the specified input stream.
NBTOutputStream - Class in org.jnbt
This class writes NBT, or Named Binary Tag Tag objects to an underlying OutputStream.
NBTOutputStream(OutputStream) - Constructor for class org.jnbt.NBTOutputStream
Creates a new NBTOutputStream, which will write data to the specified underlying output stream in big endian byte order, or if the output stream is already a DataOutput stream, in the stream's default byte order.
NBTOutputStream(OutputStream, boolean) - Constructor for class org.jnbt.NBTOutputStream
Creates a new NBTOutputStream, which will write data to the specified underlying output stream.
NBTUtils - Class in org.jnbt
A class which contains NBT-related utility methods.
NumberTag - Class in org.jnbt
An NBT tag which contains a numerical value, with methods to extract it as various primitive types regardless of the underlying type.
NumberTag(String) - Constructor for class org.jnbt.NumberTag
Creates the tag with the specified name.

O

org.jnbt - package org.jnbt
 

R

readTag() - Method in class org.jnbt.NBTInputStream
Reads an NBT tag from the stream.

S

setTag(String, Tag) - Method in class org.jnbt.CompoundTag
 
ShortTag - Class in org.jnbt
The TAG_Short tag.
ShortTag(String, short) - Constructor for class org.jnbt.ShortTag
Creates the tag.
StringTag - Class in org.jnbt
The TAG_String tag.
StringTag(String, String) - Constructor for class org.jnbt.StringTag
Creates the tag.

T

Tag - Class in org.jnbt
Represents a single NBT tag.
Tag(String) - Constructor for class org.jnbt.Tag
Creates the tag with the specified name.
toString() - Method in class org.jnbt.ByteArrayTag
 
toString() - Method in class org.jnbt.ByteTag
 
toString() - Method in class org.jnbt.CompoundTag
 
toString() - Method in class org.jnbt.DoubleTag
 
toString() - Method in class org.jnbt.EndTag
 
toString() - Method in class org.jnbt.FloatTag
 
toString() - Method in class org.jnbt.IntArrayTag
 
toString() - Method in class org.jnbt.IntTag
 
toString() - Method in class org.jnbt.ListTag
 
toString() - Method in class org.jnbt.LongArrayTag
 
toString() - Method in class org.jnbt.LongTag
 
toString() - Method in class org.jnbt.ShortTag
 
toString() - Method in class org.jnbt.StringTag
 
toXML(Tag, Writer) - Static method in class org.jnbt.XMLTransformer
 
TYPE_BYTE - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_BYTE_ARRAY - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_COMPOUND - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_DOUBLE - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_END - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_FLOAT - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_INT - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_INT_ARRAY - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_LIST - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_LONG - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_LONG_ARRAY - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_SHORT - Static variable in class org.jnbt.NBTConstants
Tag type constants.
TYPE_STRING - Static variable in class org.jnbt.NBTConstants
Tag type constants.

W

writeTag(Tag) - Method in class org.jnbt.NBTOutputStream
Writes a tag.

X

XMLTransformer - Class in org.jnbt
 
XMLTransformer() - Constructor for class org.jnbt.XMLTransformer
 
B C D E F G I L N O R S T W X 
Skip navigation links

Copyright © 2011–2023. All rights reserved.