- java.lang.Object
-
- io.github.mmm.nls.cli.property.AbstractCliProperty<Boolean>
-
- io.github.mmm.nls.cli.property.CliBooleanProperty
-
- All Implemented Interfaces:
CliProperty<Boolean>
- Direct Known Subclasses:
CliFlagProperty
public class CliBooleanProperty extends AbstractCliProperty<Boolean>
Implementation ofCliProperty
forBoolean
.
-
-
Constructor Summary
Constructors Constructor Description CliBooleanProperty(Localizable help, boolean mandatory, String... names)
The constructor.CliBooleanProperty(Localizable help, Boolean defaultValue, String... names)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
get()
Class<Boolean>
getValueClass()
void
set(Boolean value)
void
setFromString(String value)
-
Methods inherited from class io.github.mmm.nls.cli.property.AbstractCliProperty
getHelp, getNames, isMandatory, isOption, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.github.mmm.nls.cli.property.CliProperty
getAsString, getName, isEmpty, isValid, validate
-
-
-
-
Constructor Detail
-
CliBooleanProperty
public CliBooleanProperty(Localizable help, boolean mandatory, String... names)
The constructor.- Parameters:
help
- thehelp message
.mandatory
- themandatory
flag.names
- thenames
.
-
CliBooleanProperty
public CliBooleanProperty(Localizable help, Boolean defaultValue, String... names)
The constructor.- Parameters:
help
- thehelp message
.defaultValue
- the initial defaultvalue
.names
- thenames
.
-
-