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 classAbstractCliProperty<V>Abstract base implementation ofCliProperty.classCliBooleanPropertyImplementation ofCliPropertyforBoolean.classCliClassListProperty<T>CliListPropertycontainingClasselements.classCliClassProperty<T>Implementation ofCliPropertyforClass.classCliCollectionProperty<E,C extends Collection<E>>Implementation ofCliPropertyforCollection.classCliFlagPropertyCliBooleanPropertyfor aCliOptiontreated as flag so that it does not require a value andtrueis used as value if the option is given without value.classCliListProperty<E>Implementation ofCliPropertyforList.classCliLocalDatePropertyImplementation ofCliPropertyforLocalDate.classCliLocaleListPropertyCliListPropertycontainingLocaleelements.classCliLocalePropertyImplementation ofCliPropertyforLocale.classCliLocalTimePropertyImplementation ofCliPropertyforLocalTime.classCliLongListPropertyCliListPropertycontainingLongelements.classCliLongPropertyImplementation ofCliPropertyforLong.classCliSetProperty<E>Implementation ofCliPropertyforSet.classCliStringListPropertyCliListPropertycontainingStringelements.classCliStringPropertyImplementation ofCliPropertyforString.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.
-