Uses of Interface
com.github.rvesse.airline.types.TypeConverterProvider
Packages that use TypeConverterProvider
Package
Description
-
Uses of TypeConverterProvider in com.github.rvesse.airline.examples.userguide.practise
Classes in com.github.rvesse.airline.examples.userguide.practise that implement TypeConverterProviderModifier and TypeClassDescriptionclass
An example of an extended type converter that adds support for converting from types that provide anparse(String)
method -
Uses of TypeConverterProvider in com.github.rvesse.airline.model
Fields in com.github.rvesse.airline.model declared as TypeConverterProviderModifier and TypeFieldDescriptionprivate final TypeConverterProvider
ArgumentsMetadata.provider
private final TypeConverterProvider
OptionMetadata.provider
Methods in com.github.rvesse.airline.model that return TypeConverterProviderModifier and TypeMethodDescriptionArgumentsMetadata.getTypeConverterProvider()
OptionMetadata.getTypeConverterProvider()
Constructors in com.github.rvesse.airline.model with parameters of type TypeConverterProviderModifierConstructorDescriptionArgumentsMetadata
(Iterable<String> titles, String description, Iterable<ArgumentsRestriction> restrictions, TypeConverterProvider typeConverterProvider, Iterable<Field> path) OptionMetadata
(OptionType optionType, Iterable<String> options, Iterable<String> titles, String description, int arity, boolean hidden, boolean overrides, boolean sealed, Iterable<OptionRestriction> restrictions, TypeConverterProvider typeConverterProvider, Iterable<Field> path) -
Uses of TypeConverterProvider in com.github.rvesse.airline.types
Classes in com.github.rvesse.airline.types that implement TypeConverterProviderModifier and TypeClassDescriptionclass
The default type converterclass
Default type converter provider which simply inspects theParseState
given and returns the the type converter specified on theParserMetadata
provided by the parse state -
Uses of TypeConverterProvider in com.github.rvesse.airline.types.numerics
Classes in com.github.rvesse.airline.types.numerics that implement TypeConverterProviderModifier and TypeClassDescriptionclass
Abstract numeric type converter that supports numerics given in the form1234suffix
wheresuffix
denotes some multiplier.class
-
Uses of TypeConverterProvider in com.github.rvesse.airline.types.numerics.abbreviated
Classes in com.github.rvesse.airline.types.numerics.abbreviated that implement TypeConverterProviderModifier and TypeClassDescriptionclass
class
A numeric type converter that supports standard using suffixes -k m b t
- to abbreviate numbers expressed in terms of thousands, millions, billions or trillionsclass
A numeric type converter that supports suffixes used to denote base 2 kilo unitsclass
class
class
-
Uses of TypeConverterProvider in com.github.rvesse.airline.types.numerics.bases
Classes in com.github.rvesse.airline.types.numerics.bases that implement TypeConverterProviderModifier and TypeClassDescriptionclass
A type converter that supports binary numbersclass
A type converter that supports hexadecimal numbersclass
A type converter that supports octal numbers