Uses of Interface
io.github.mmm.nls.cli.property.CliProperty
-
Packages that use CliProperty Package Description io.github.mmm.nls.cli Contains native language support (NLS) for command-line-interfaces (CLI).io.github.mmm.nls.cli.property Contains properties for data-binding to CLI commands. -
-
Uses of CliProperty in io.github.mmm.nls.cli
Methods in io.github.mmm.nls.cli with type parameters of type CliProperty Modifier and Type Method Description protected <P extends CliProperty<?>>
PAbstractCliCommand. add(P property)
Methods in io.github.mmm.nls.cli that return types with arguments of type CliProperty Modifier and Type Method Description Collection<CliProperty<?>>
AbstractCliCommand. getProperties()
Collection<CliProperty<?>>
CliCommand. getProperties()
-
Uses of CliProperty in io.github.mmm.nls.cli.property
Classes in io.github.mmm.nls.cli.property that implement CliProperty Modifier and Type Class Description class
AbstractCliProperty<V>
Abstract base implementation ofCliProperty
.class
CliBooleanProperty
Implementation ofCliProperty
forBoolean
.class
CliClassListProperty<T>
CliListProperty
containingClass
elements.class
CliClassProperty<T>
Implementation ofCliProperty
forClass
.class
CliCollectionProperty<E,C extends Collection<E>>
Implementation ofCliProperty
forCollection
.class
CliFlagProperty
CliBooleanProperty
for aCliOption
treated as flag so that it does not require a value andtrue
is used as value if the option is given without value.class
CliListProperty<E>
Implementation ofCliProperty
forList
.class
CliLocalDateProperty
Implementation ofCliProperty
forLocalDate
.class
CliLocaleListProperty
CliListProperty
containingLocale
elements.class
CliLocaleProperty
Implementation ofCliProperty
forLocale
.class
CliLocalTimeProperty
Implementation ofCliProperty
forLocalTime
.class
CliLongListProperty
CliListProperty
containingLong
elements.class
CliLongProperty
Implementation ofCliProperty
forLong
.class
CliSetProperty<E>
Implementation ofCliProperty
forSet
.class
CliStringListProperty
CliListProperty
containingString
elements.class
CliStringProperty
Implementation ofCliProperty
forString
.Constructors in io.github.mmm.nls.cli.property with parameters of type CliProperty Constructor Description CliCollectionProperty(Localizable help, CliProperty<E> property, boolean mandatory, String... names)
The constructor.CliListProperty(Localizable help, CliProperty<E> property, boolean mandatory, String... names)
The constructor.CliListProperty(Localizable help, CliProperty<E> property, List<E> defaultValue, String... names)
The constructor.CliSetProperty(Localizable help, CliProperty<E> property, boolean mandatory, String... names)
The constructor.CliSetProperty(Localizable help, CliProperty<E> property, Set<E> defaultValue, String... names)
The constructor.
-