Package org.incendo.cloud.parser
Class StandardParameters
java.lang.Object
org.incendo.cloud.parser.StandardParameters
Common parser parameters used when resolving types in the
ParserRegistry-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ParserParameter<Boolean> Indicates that an argument should stop parsing when encountering a potential flag.static final ParserParameter<Boolean> Indicates that a string argument should be greedystatic final ParserParameter<Boolean> Indicates that a boolean argument should be liberal.static final ParserParameter<Boolean> Indicates that a string argument should be quoted.static final ParserParameter<Number> Maximum value accepted by a numerical parserstatic final ParserParameter<Number> Minimum value accepted by a numerical parser -
Method Summary
-
Field Details
-
RANGE_MIN
Minimum value accepted by a numerical parser -
RANGE_MAX
Maximum value accepted by a numerical parser -
GREEDY
Indicates that a string argument should be greedy -
FLAG_YIELDING
Indicates that an argument should stop parsing when encountering a potential flag.- See Also:
-
QUOTED
Indicates that a string argument should be quoted. -
LIBERAL
Indicates that a boolean argument should be liberal.
-