Package picocli
Class CommandLine.Model.ParserSpec
- java.lang.Object
-
- picocli.CommandLine.Model.ParserSpec
-
- Enclosing class:
- CommandLine.Model
public static class CommandLine.Model.ParserSpec extends java.lang.ObjectModels parser configuration specification.- Since:
- 3.0
-
-
Field Summary
Fields Modifier and Type Field Description private booleanabbreviatedOptionsAllowedprivate booleanabbreviatedSubcommandsAllowedprivate booleanaritySatisfiedByAttachedOptionParamprivate java.lang.CharacteratFileCommentCharprivate booleancaseInsensitiveEnumValuesAllowedprivate booleancollectErrors(package private) static java.lang.StringDEFAULT_END_OF_OPTIONS_DELIMITER(package private) static java.lang.StringDEFAULT_SEPARATORConstant String holding the default separator between options and option parameters:"=".private java.lang.StringendOfOptionsDelimiterprivate booleanexpandAtFilesprivate booleanlimitSplitprivate booleanoverwrittenOptionsAllowedprivate booleanposixClusteredShortOptionsAllowedprivate java.lang.Stringseparatorprivate booleansplitQuotedStringsprivate booleanstopAtPositionalprivate booleanstopAtUnmatchedprivate booleantoggleBooleanFlagsprivate booleantrimQuotesprivate booleanunmatchedArgumentsAllowedprivate booleanunmatchedOptionsAllowedAsOptionParametersprivate booleanunmatchedOptionsArePositionalParamsprivate booleanuseSimplifiedAtFiles
-
Constructor Summary
Constructors Constructor Description ParserSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanabbreviatedOptionsAllowed()CommandLine.Model.ParserSpecabbreviatedOptionsAllowed(boolean abbreviatedOptionsAllowed)booleanabbreviatedSubcommandsAllowed()CommandLine.Model.ParserSpecabbreviatedSubcommandsAllowed(boolean abbreviatedSubcommandsAllowed)booleanaritySatisfiedByAttachedOptionParam()Returns true if options with attached arguments should not consume subsequent arguments and should not validate arity.CommandLine.Model.ParserSpecaritySatisfiedByAttachedOptionParam(boolean newValue)Returns true if options with attached arguments should not consume subsequent arguments and should not validate arity.java.lang.CharacteratFileCommentChar()CommandLine.Model.ParserSpecatFileCommentChar(java.lang.Character atFileCommentChar)booleancaseInsensitiveEnumValuesAllowed()CommandLine.Model.ParserSpeccaseInsensitiveEnumValuesAllowed(boolean caseInsensitiveEnumValuesAllowed)booleancollectErrors()Returns true if exceptions during parsing should be collected instead of thrown.CommandLine.Model.ParserSpeccollectErrors(boolean collectErrors)Sets whether exceptions during parsing should be collected instead of thrown.java.lang.StringendOfOptionsDelimiter()CommandLine.Model.ParserSpecendOfOptionsDelimiter(java.lang.String delimiter)booleanexpandAtFiles()CommandLine.Model.ParserSpecexpandAtFiles(boolean expandAtFiles)(package private) voidinitFrom(CommandLine.Model.ParserSpec settings)(package private) voidinitSeparator(java.lang.String value)booleanlimitSplit()Returns true if arguments should be split first before any further processing and the number of parts resulting from the split is limited to the max arity of the argument.CommandLine.Model.ParserSpeclimitSplit(boolean limitSplit)Sets whether arguments should be split first before any further processing.booleanoverwrittenOptionsAllowed()CommandLine.Model.ParserSpecoverwrittenOptionsAllowed(boolean overwrittenOptionsAllowed)booleanposixClusteredShortOptionsAllowed()CommandLine.Model.ParserSpecposixClusteredShortOptionsAllowed(boolean posixClusteredShortOptionsAllowed)java.lang.Stringseparator()Returns the String to use as the separator between options and option parameters.CommandLine.Model.ParserSpecseparator(java.lang.String separator)Sets the String to use as the separator between options and option parameters.private booleanshouldTrimQuotes()private booleansplitFirst()booleansplitQuotedStrings()CommandLine.Model.ParserSpecsplitQuotedStrings(boolean splitQuotedStrings)booleanstopAtPositional()CommandLine.Model.ParserSpecstopAtPositional(boolean stopAtPositional)booleanstopAtUnmatched()CommandLine.Model.ParserSpecstopAtUnmatched(boolean stopAtUnmatched)booleantoggleBooleanFlags()CommandLine.Model.ParserSpectoggleBooleanFlags(boolean toggleBooleanFlags)java.lang.StringtoString()booleantrimQuotes()CommandLine.Model.ParserSpectrimQuotes(boolean trimQuotes)booleanunmatchedArgumentsAllowed()CommandLine.Model.ParserSpecunmatchedArgumentsAllowed(boolean unmatchedArgumentsAllowed)booleanunmatchedOptionsAllowedAsOptionParameters()CommandLine.Model.ParserSpecunmatchedOptionsAllowedAsOptionParameters(boolean unmatchedOptionsAllowedAsOptionParameters)booleanunmatchedOptionsArePositionalParams()CommandLine.Model.ParserSpecunmatchedOptionsArePositionalParams(boolean unmatchedOptionsArePositionalParams)(package private) voidupdateSeparator(java.lang.String value)booleanuseSimplifiedAtFiles()CommandLine.Model.ParserSpecuseSimplifiedAtFiles(boolean useSimplifiedAtFiles)
-
-
-
Field Detail
-
DEFAULT_SEPARATOR
static final java.lang.String DEFAULT_SEPARATOR
Constant String holding the default separator between options and option parameters:"=".- See Also:
- Constant Field Values
-
DEFAULT_END_OF_OPTIONS_DELIMITER
static final java.lang.String DEFAULT_END_OF_OPTIONS_DELIMITER
- See Also:
- Constant Field Values
-
abbreviatedOptionsAllowed
private boolean abbreviatedOptionsAllowed
-
abbreviatedSubcommandsAllowed
private boolean abbreviatedSubcommandsAllowed
-
aritySatisfiedByAttachedOptionParam
private boolean aritySatisfiedByAttachedOptionParam
-
atFileCommentChar
private java.lang.Character atFileCommentChar
-
caseInsensitiveEnumValuesAllowed
private boolean caseInsensitiveEnumValuesAllowed
-
collectErrors
private boolean collectErrors
-
endOfOptionsDelimiter
private java.lang.String endOfOptionsDelimiter
-
expandAtFiles
private boolean expandAtFiles
-
limitSplit
private boolean limitSplit
-
overwrittenOptionsAllowed
private boolean overwrittenOptionsAllowed
-
posixClusteredShortOptionsAllowed
private boolean posixClusteredShortOptionsAllowed
-
separator
private java.lang.String separator
-
splitQuotedStrings
private boolean splitQuotedStrings
-
stopAtPositional
private boolean stopAtPositional
-
stopAtUnmatched
private boolean stopAtUnmatched
-
toggleBooleanFlags
private boolean toggleBooleanFlags
-
trimQuotes
private boolean trimQuotes
-
unmatchedArgumentsAllowed
private boolean unmatchedArgumentsAllowed
-
unmatchedOptionsAllowedAsOptionParameters
private boolean unmatchedOptionsAllowedAsOptionParameters
-
unmatchedOptionsArePositionalParams
private boolean unmatchedOptionsArePositionalParams
-
useSimplifiedAtFiles
private boolean useSimplifiedAtFiles
-
-
Method Detail
-
separator
public java.lang.String separator()
Returns the String to use as the separator between options and option parameters."="by default, initialized fromCommandLine.Command.separator()if defined.
-
stopAtUnmatched
public boolean stopAtUnmatched()
- See Also:
CommandLine.isStopAtUnmatched()
-
stopAtPositional
public boolean stopAtPositional()
- See Also:
CommandLine.isStopAtPositional()
-
endOfOptionsDelimiter
public java.lang.String endOfOptionsDelimiter()
- Since:
- 3.5
- See Also:
CommandLine.getEndOfOptionsDelimiter()
-
toggleBooleanFlags
public boolean toggleBooleanFlags()
- See Also:
CommandLine.isToggleBooleanFlags()
-
overwrittenOptionsAllowed
public boolean overwrittenOptionsAllowed()
-
unmatchedArgumentsAllowed
public boolean unmatchedArgumentsAllowed()
-
abbreviatedSubcommandsAllowed
public boolean abbreviatedSubcommandsAllowed()
-
abbreviatedOptionsAllowed
public boolean abbreviatedOptionsAllowed()
-
expandAtFiles
public boolean expandAtFiles()
- See Also:
CommandLine.isExpandAtFiles()
-
atFileCommentChar
public java.lang.Character atFileCommentChar()
- Since:
- 3.5
- See Also:
CommandLine.getAtFileCommentChar()
-
useSimplifiedAtFiles
public boolean useSimplifiedAtFiles()
- Since:
- 3.9
- See Also:
CommandLine.isUseSimplifiedAtFiles()
-
posixClusteredShortOptionsAllowed
public boolean posixClusteredShortOptionsAllowed()
-
caseInsensitiveEnumValuesAllowed
public boolean caseInsensitiveEnumValuesAllowed()
- Since:
- 3.4
- See Also:
CommandLine.isCaseInsensitiveEnumValuesAllowed()
-
trimQuotes
public boolean trimQuotes()
- Since:
- 3.7
- See Also:
CommandLine.isTrimQuotes()
-
splitQuotedStrings
public boolean splitQuotedStrings()
- Since:
- 3.7
- See Also:
CommandLine.isSplitQuotedStrings()
-
unmatchedOptionsArePositionalParams
public boolean unmatchedOptionsArePositionalParams()
-
unmatchedOptionsAllowedAsOptionParameters
public boolean unmatchedOptionsAllowedAsOptionParameters()
- Since:
- 4.4
- See Also:
CommandLine.isUnmatchedOptionsAllowedAsOptionParameters()
-
splitFirst
private boolean splitFirst()
-
limitSplit
public boolean limitSplit()
Returns true if arguments should be split first before any further processing and the number of parts resulting from the split is limited to the max arity of the argument.
-
aritySatisfiedByAttachedOptionParam
public boolean aritySatisfiedByAttachedOptionParam()
Returns true if options with attached arguments should not consume subsequent arguments and should not validate arity. The default isfalse.
-
collectErrors
public boolean collectErrors()
Returns true if exceptions during parsing should be collected instead of thrown. Multiple errors may be encountered during parsing. These can be obtained fromCommandLine.ParseResult.errors().- Since:
- 3.2
-
separator
public CommandLine.Model.ParserSpec separator(java.lang.String separator)
Sets the String to use as the separator between options and option parameters.- Returns:
- this ParserSpec for method chaining
-
stopAtUnmatched
public CommandLine.Model.ParserSpec stopAtUnmatched(boolean stopAtUnmatched)
- See Also:
CommandLine.setStopAtUnmatched(boolean)
-
stopAtPositional
public CommandLine.Model.ParserSpec stopAtPositional(boolean stopAtPositional)
- See Also:
CommandLine.setStopAtPositional(boolean)
-
endOfOptionsDelimiter
public CommandLine.Model.ParserSpec endOfOptionsDelimiter(java.lang.String delimiter)
- Since:
- 3.5
- See Also:
CommandLine.setEndOfOptionsDelimiter(String)
-
toggleBooleanFlags
public CommandLine.Model.ParserSpec toggleBooleanFlags(boolean toggleBooleanFlags)
-
overwrittenOptionsAllowed
public CommandLine.Model.ParserSpec overwrittenOptionsAllowed(boolean overwrittenOptionsAllowed)
-
unmatchedArgumentsAllowed
public CommandLine.Model.ParserSpec unmatchedArgumentsAllowed(boolean unmatchedArgumentsAllowed)
-
abbreviatedSubcommandsAllowed
public CommandLine.Model.ParserSpec abbreviatedSubcommandsAllowed(boolean abbreviatedSubcommandsAllowed)
-
abbreviatedOptionsAllowed
public CommandLine.Model.ParserSpec abbreviatedOptionsAllowed(boolean abbreviatedOptionsAllowed)
-
expandAtFiles
public CommandLine.Model.ParserSpec expandAtFiles(boolean expandAtFiles)
- See Also:
CommandLine.setExpandAtFiles(boolean)
-
atFileCommentChar
public CommandLine.Model.ParserSpec atFileCommentChar(java.lang.Character atFileCommentChar)
- Since:
- 3.5
- See Also:
CommandLine.setAtFileCommentChar(Character)
-
useSimplifiedAtFiles
public CommandLine.Model.ParserSpec useSimplifiedAtFiles(boolean useSimplifiedAtFiles)
- Since:
- 3.9
- See Also:
CommandLine.setUseSimplifiedAtFiles(boolean)
-
posixClusteredShortOptionsAllowed
public CommandLine.Model.ParserSpec posixClusteredShortOptionsAllowed(boolean posixClusteredShortOptionsAllowed)
-
caseInsensitiveEnumValuesAllowed
public CommandLine.Model.ParserSpec caseInsensitiveEnumValuesAllowed(boolean caseInsensitiveEnumValuesAllowed)
- Since:
- 3.4
- See Also:
CommandLine.setCaseInsensitiveEnumValuesAllowed(boolean)
-
trimQuotes
public CommandLine.Model.ParserSpec trimQuotes(boolean trimQuotes)
- Since:
- 3.7
- See Also:
CommandLine.setTrimQuotes(boolean)
-
splitQuotedStrings
public CommandLine.Model.ParserSpec splitQuotedStrings(boolean splitQuotedStrings)
- Since:
- 3.7
- See Also:
CommandLine.setSplitQuotedStrings(boolean)
-
unmatchedOptionsAllowedAsOptionParameters
public CommandLine.Model.ParserSpec unmatchedOptionsAllowedAsOptionParameters(boolean unmatchedOptionsAllowedAsOptionParameters)
- Since:
- 4.4
- See Also:
CommandLine.setUnmatchedOptionsAllowedAsOptionParameters(boolean)
-
unmatchedOptionsArePositionalParams
public CommandLine.Model.ParserSpec unmatchedOptionsArePositionalParams(boolean unmatchedOptionsArePositionalParams)
-
collectErrors
public CommandLine.Model.ParserSpec collectErrors(boolean collectErrors)
Sets whether exceptions during parsing should be collected instead of thrown. Multiple errors may be encountered during parsing. These can be obtained fromCommandLine.ParseResult.errors().- Since:
- 3.2
-
aritySatisfiedByAttachedOptionParam
public CommandLine.Model.ParserSpec aritySatisfiedByAttachedOptionParam(boolean newValue)
Returns true if options with attached arguments should not consume subsequent arguments and should not validate arity. The default isfalse.
-
limitSplit
public CommandLine.Model.ParserSpec limitSplit(boolean limitSplit)
Sets whether arguments should be split first before any further processing. If true, the original argument will only be split into as many parts as allowed by max arity.
-
shouldTrimQuotes
private boolean shouldTrimQuotes()
-
initSeparator
void initSeparator(java.lang.String value)
-
updateSeparator
void updateSeparator(java.lang.String value)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
initFrom
void initFrom(CommandLine.Model.ParserSpec settings)
-
-