Uses of Interface
com.martiansoftware.jsap.Flagged
-
Packages that use Flagged Package Description com.martiansoftware.jsap -
-
Uses of Flagged in com.martiansoftware.jsap
Classes in com.martiansoftware.jsap that implement Flagged Modifier and Type Class Description class
FlaggedOption
An option that implements the Flagged interface.class
QualifiedSwitch
A QualifiedSwitch is a parameter that has something in common with a Switch, i.e., its presence or absence is significant, but different from a "pure" Switch it can have an additional value (or values) prefixed by a ':' sign that qualifies the Switch - making it behave like a FlaggedOption if a value is specified.class
Switch
A Switch is a parameter whose presence alone is significant; another commonly used term for a Switch is "Flag".Methods in com.martiansoftware.jsap that return Flagged Modifier and Type Method Description Flagged
JSAP. getByLongFlag(java.lang.String longFlag)
Returns the requested Switch or FlaggedOption with the specified long flag.Flagged
JSAP. getByShortFlag(char shortFlag)
Returns the requested Switch or FlaggedOption with the specified short flag.Flagged
JSAP. getByShortFlag(java.lang.Character shortFlag)
Returns the requested Switch or FlaggedOption with the specified short flag.
-