Uses of Interface
io.vertx.core.cli.converters.Converter
-
Packages that use Converter Package Description io.vertx.core.cli io.vertx.core.cli.annotations io.vertx.core.cli.converters -
-
Uses of Converter in io.vertx.core.cli
Fields in io.vertx.core.cli declared as Converter Modifier and Type Field Description protected Converter<T>
TypedArgument. converter
The converter to use to create the value.protected Converter<T>
TypedOption. converter
the converter to create the value.Methods in io.vertx.core.cli that return Converter Modifier and Type Method Description Converter<T>
TypedArgument. getConverter()
Converter<T>
TypedOption. getConverter()
Methods in io.vertx.core.cli with parameters of type Converter Modifier and Type Method Description TypedArgument<T>
TypedArgument. setConverter(Converter<T> converter)
Sets the converter used to create the value.TypedOption<T>
TypedOption. setConverter(Converter<T> converter)
-
Uses of Converter in io.vertx.core.cli.annotations
Methods in io.vertx.core.cli.annotations that return types with arguments of type Converter Modifier and Type Method Description Class<? extends Converter<?>>
value()
The converter class used to transform the value as String to the target type. -
Uses of Converter in io.vertx.core.cli.converters
Classes in io.vertx.core.cli.converters that implement Converter Modifier and Type Class Description class
BooleanConverter
A converter for boolean.class
CharacterConverter
A converter for character.class
ConstructorBasedConverter<T>
This 'default' converter tries to create objects using a constructor taking a single String argument.class
FromBasedConverter<T>
This 'default' converter tries to create objects using a static 'from' method taking a single String argument.class
FromStringBasedConverter<T>
This 'default' converter tries to create objects using a static 'from' method taking a single String argument.class
ValueOfBasedConverter<T>
This 'default' converter tries to create objects using a static 'valueOf' method taking a single String argument.Methods in io.vertx.core.cli.converters that return Converter Modifier and Type Method Description static <T> Converter<T>
Converters. newInstance(Class<? extends Converter<T>> type)
Methods in io.vertx.core.cli.converters with parameters of type Converter Modifier and Type Method Description static <T> T
Converters. create(String value, Converter<T> converter)
Method parameters in io.vertx.core.cli.converters with type arguments of type Converter Modifier and Type Method Description static <T> Converter<T>
Converters. newInstance(Class<? extends Converter<T>> type)
-