Package net.kyori.adventure.nbt
Interface BinaryTagIO.Reader
-
- Enclosing class:
- BinaryTagIO
public static interface BinaryTagIO.ReaderCompoundBinaryTagreader.- Since:
- 4.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @NotNull CompoundBinaryTagread(@NotNull java.io.DataInput input)Reads a binary tag frominput.default @NotNull CompoundBinaryTagread(@NotNull java.io.InputStream input)Reads a binary tag frominput.@NotNull CompoundBinaryTagread(@NotNull java.io.InputStream input, @NotNull BinaryTagIO.Compression compression)Reads a binary tag frominputwith acompressiontype.default @NotNull CompoundBinaryTagread(@NotNull java.nio.file.Path path)Reads a binary tag frompath.@NotNull CompoundBinaryTagread(@NotNull java.nio.file.Path path, @NotNull BinaryTagIO.Compression compression)Reads a binary tag frompathwith acompressiontype.@NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag>readNamed(@NotNull java.io.DataInput input)Reads a binary tag, with a name, frominput.default @NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag>readNamed(@NotNull java.io.InputStream input)Reads a binary tag, with a name, frominput.@NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag>readNamed(@NotNull java.io.InputStream input, @NotNull BinaryTagIO.Compression compression)Reads a binary tag, with a name, frominput.default @NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag>readNamed(@NotNull java.nio.file.Path path)Reads a binary tag, with a name, frompath.@NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag>readNamed(@NotNull java.nio.file.Path path, @NotNull BinaryTagIO.Compression compression)Reads a binary tag, with a name, frompath.
-
-
-
Method Detail
-
read
@NotNull default @NotNull CompoundBinaryTag read(@NotNull @NotNull java.nio.file.Path path) throws java.io.IOException
Reads a binary tag frompath.This is the equivalent of passing
Compression#NONEas the second parameter toread(Path, Compression).- Parameters:
path- the path- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
read
@NotNull @NotNull CompoundBinaryTag read(@NotNull @NotNull java.nio.file.Path path, @NotNull @NotNull BinaryTagIO.Compression compression) throws java.io.IOException
Reads a binary tag frompathwith acompressiontype.- Parameters:
path- the pathcompression- the compression type- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
read
@NotNull default @NotNull CompoundBinaryTag read(@NotNull @NotNull java.io.InputStream input) throws java.io.IOException
Reads a binary tag frominput.This is the equivalent of passing
Compression#NONEas the second parameter toread(InputStream, Compression).- Parameters:
input- the input stream- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
read
@NotNull @NotNull CompoundBinaryTag read(@NotNull @NotNull java.io.InputStream input, @NotNull @NotNull BinaryTagIO.Compression compression) throws java.io.IOException
Reads a binary tag frominputwith acompressiontype.- Parameters:
input- the input streamcompression- the compression type- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
read
@NotNull @NotNull CompoundBinaryTag read(@NotNull @NotNull java.io.DataInput input) throws java.io.IOException
Reads a binary tag frominput.- Parameters:
input- the input stream- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
readNamed
default @NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag> readNamed(@NotNull @NotNull java.nio.file.Path path) throws java.io.IOException
Reads a binary tag, with a name, frompath.This is the equivalent of passing
Compression#NONEas the second parameter toreadNamed(Path, Compression).- Parameters:
path- the path- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
readNamed
@NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag> readNamed(@NotNull @NotNull java.nio.file.Path path, @NotNull @NotNull BinaryTagIO.Compression compression) throws java.io.IOException
Reads a binary tag, with a name, frompath.- Parameters:
path- the pathcompression- the compression type- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
readNamed
default @NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag> readNamed(@NotNull @NotNull java.io.InputStream input) throws java.io.IOException
Reads a binary tag, with a name, frominput.This is the equivalent of passing
Compression#NONEas the second parameter toreadNamed(InputStream, Compression).- Parameters:
input- the input stream- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
readNamed
@NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag> readNamed(@NotNull @NotNull java.io.InputStream input, @NotNull @NotNull BinaryTagIO.Compression compression) throws java.io.IOException
Reads a binary tag, with a name, frominput.- Parameters:
input- the input streamcompression- the compression type- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
readNamed
@NotNull java.util.Map.Entry<java.lang.String,CompoundBinaryTag> readNamed(@NotNull @NotNull java.io.DataInput input) throws java.io.IOException
Reads a binary tag, with a name, frominput.- Parameters:
input- the input- Returns:
- a binary tag
- Throws:
java.io.IOException- if an exception was encountered while reading the tag- Since:
- 4.4.0
-
-