Uses of Class
com.github.tadukoo.parsing.fileformat.FileFormat
Package
Description
Provides classes for making your own custom File Format, similar to YAML syntax
-
Uses of FileFormat in com.github.tadukoo.parsing.fileformat
Modifier and TypeMethodDescriptionstatic Node
TadFormatNodeHeader.createHeader
(FileFormat format, FileFormatSchema schema) Creates a Tad Format Header for the givenFileFormat
andFileFormatSchema
.private static FormatNode
TadFormatNodeHeader.getFileFormatNode
(com.github.tadukoo.util.logger.EasyLogger logger, FileFormat format) Creates aFormatNode
for the File Format Node.static boolean
FileFormatSchemaVerification.verifyFileFormat
(com.github.tadukoo.util.logger.EasyLogger logger, FileFormat format, FileFormatSchema schema, String filepath) Checks if the file located at the given file path matches the givenFileFormatSchema
or not.static boolean
FileFormatSchemaVerification.verifyFileFormat
(com.github.tadukoo.util.logger.EasyLogger logger, FileFormat format, FileFormatSchema schema, String filepath, Node headNode) Checks if the given Nodes (given via the head Node) located (or to be located) at the given file path matches the givenFileFormatSchema
or not.static boolean
TadFormatNodeHeader.verifyTadFormatNode
(com.github.tadukoo.util.logger.EasyLogger logger, Node tadFormatNode, FileFormat format, FileFormatSchema schema) Verifies that the Tad Format Node is correct at the top of a file.