Uses of Interface
net.morimekta.console.util.Parser
-
Packages that use Parser Package Description net.morimekta.console.util -
-
Uses of Parser in net.morimekta.console.util
Classes in net.morimekta.console.util that implement Parser Modifier and Type Class Description static class
Parser.DirParser
A converter to file instances, with validator & error message.static class
Parser.DoubleParser
A converter to double values.static class
Parser.EnumParser<E extends java.lang.Enum<E>>
A converter to enum constant values.static class
Parser.FileParser
A converter to file instances, with validator & error message.static class
Parser.IntegerParser
A converter to integer values.static class
Parser.LongParser
A converter to long values.static class
Parser.OutputDirParser
A converter to file instances, with validator & error message.static class
Parser.OutputFileParser
A converter to file instances, with validator & error message.static class
Parser.PathParser
A converter to path values.Methods in net.morimekta.console.util that return Parser Modifier and Type Method Description static Parser<java.lang.Double>
Parser. dbl()
Make a double parser.static Parser<java.io.File>
Parser. dir()
Make a file parser that refers to an existing directory.static Parser<java.io.File>
Parser. file()
Make a file parser that refers to an existing file.static Parser<java.lang.Integer>
Parser. i32()
Make a 32-bit integer parser.static Parser<java.lang.Long>
Parser. i64()
Make a 64-bit integer parser.static <E extends java.lang.Enum<E>>
Parser<E>Parser. oneOf(java.lang.Class<E> klass)
Make an enum value parsing consumer.static Parser<java.io.File>
Parser. outputDir()
Make a parser that refers either to a non-existing entry or an existing directory, but not a file or special device.static Parser<java.io.File>
Parser. outputFile()
Make a file parser that refers either to a non-existing entry or an existing file, but not a directory or special device.static Parser<java.nio.file.Path>
Parser. path()
Make a parser that parses a path.
-