Class BinaryFormat
java.lang.Object
dev.siroshun.configapi.format.binary.BinaryFormat
- All Implemented Interfaces:
FileFormat<Node<?>>
A
FileFormat
implementation that loading/saving MapNode
from/to binary format.
Supported Node
s:
ValueNode
s excludingEnumValue
ArrayNode
,ListNode
andMapNode
NullNode
CommentedNode
- The comment will be dropped
For specifications of this format, please see the comments in the source code.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescription@NotNull Node<?>
load
(@NotNull InputStream input) Loads a node from aInputStream
.@NotNull Node<?>
Deprecated.Not supported@NotNull Node<?>
Loads a node from a file.void
save
(@NotNull Node<?> node, @NotNull OutputStream output) Saves a node to aOutputStream
.void
Deprecated.Not supportedvoid
Saves a node to a file.
-
Field Details
-
DEFAULT
An instance ofBinaryFormat
.
-
-
Method Details
-
load
Description copied from interface:FileFormat
Loads a node from a file.- Specified by:
load
in interfaceFileFormat<Node<?>>
- Parameters:
filepath
- a filepath to load a node- Returns:
- a loaded
Node
(FileFormat
) - Throws:
IOException
- if I/O error occurred
-
load
Description copied from interface:FileFormat
Loads a node from aInputStream
.- Specified by:
load
in interfaceFileFormat<Node<?>>
- Parameters:
input
- aInputStream
to load a node- Returns:
- a loaded
Node
(FileFormat
) - Throws:
IOException
- if I/O error occurred
-
save
public void save(@NotNull @NotNull Node<?> node, @NotNull @NotNull Path filepath) throws IOException Description copied from interface:FileFormat
Saves a node to a file.- Specified by:
save
in interfaceFileFormat<Node<?>>
- Parameters:
node
- a rootNode
(FileFormat
) to savefilepath
- a filepath to write a node- Throws:
IOException
- if I/O error occurred
-
save
public void save(@NotNull @NotNull Node<?> node, @NotNull @NotNull OutputStream output) throws IOException Description copied from interface:FileFormat
Saves a node to aOutputStream
.- Specified by:
save
in interfaceFileFormat<Node<?>>
- Parameters:
node
- a rootNode
(FileFormat
) to saveoutput
- aOutputStream
to write a node- Throws:
IOException
- if I/O error occurred
-
load
Deprecated.Not supportedLoads a node from aReader
.- Specified by:
load
in interfaceFileFormat<Node<?>>
- Parameters:
reader
- aReader
to load a node- Returns:
- a loaded
Node
(FileFormat
)
-
save
Deprecated.Not supportedSaves a node to aWriter
.- Specified by:
save
in interfaceFileFormat<Node<?>>
- Parameters:
node
- a rootNode
(FileFormat
) to savewriter
- aWriter
to write a node
-