Class NBTOutputStream
java.lang.Object
com.github.imdabigboss.easydatapack.api.utils.nbt.NBTOutputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
This class writes NBT, or
Named Binary Tag Tag objects to an underlying
OutputStream.
The NBT format was created by Markus Persson, and the specification may be found at http://www.minecraft.net/docs/NBT.txt.
- Author:
- Graham Edgecombe
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newNBTOutputStream, which will write data to the specified underlying output stream. -
Method Summary
-
Constructor Details
-
NBTOutputStream
Creates a newNBTOutputStream, which will write data to the specified underlying output stream.- Parameters:
os- The output stream.- Throws:
IOException- if an I/O error occurs.
-
-
Method Details
-
writeTag
Writes a tag.- Parameters:
tag- The tag to write.- Throws:
IOException- if an I/O error occurs.
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-