Uses of Interface
com.github.rvesse.airline.types.numerics.NumericTypeConverter
-
-
Uses of NumericTypeConverter in com.github.rvesse.airline.annotations
Methods in com.github.rvesse.airline.annotations that return types with arguments of type NumericTypeConverter Modifier and Type Method Description java.lang.Class<? extends NumericTypeConverter>
numericTypeConverter()
Sets the numeric type converter to use, this is used in conjunction with the value of theParser.typeConverter()
, if that class does not respectNumericTypeConverter
instances then this field has no effect -
Uses of NumericTypeConverter in com.github.rvesse.airline.builder
Fields in com.github.rvesse.airline.builder declared as NumericTypeConverter Modifier and Type Field Description protected NumericTypeConverter
ParserBuilder. numericTypeConverter
Methods in com.github.rvesse.airline.builder with parameters of type NumericTypeConverter Modifier and Type Method Description ParserBuilder<C>
ParserBuilder. withNumericTypeConverter(NumericTypeConverter converter)
Indicates the desired numeric type converter to use, this is passed as an argument to the given type converter -
Uses of NumericTypeConverter in com.github.rvesse.airline.types
Fields in com.github.rvesse.airline.types declared as NumericTypeConverter Modifier and Type Field Description private NumericTypeConverter
DefaultTypeConverter. numericConverter
Methods in com.github.rvesse.airline.types with parameters of type NumericTypeConverter Modifier and Type Method Description void
DefaultTypeConverter. setNumericConverter(NumericTypeConverter converter)
void
TypeConverter. setNumericConverter(NumericTypeConverter converter)
Sets the numeric type converter to use, ifnull
then default behaviour of the type converter instance (whatever that might be) will be usedConstructors in com.github.rvesse.airline.types with parameters of type NumericTypeConverter Constructor Description DefaultTypeConverter(NumericTypeConverter numericConverter)
-
Uses of NumericTypeConverter in com.github.rvesse.airline.types.numerics
Classes in com.github.rvesse.airline.types.numerics that implement NumericTypeConverter Modifier and Type Class Description class
ComplexNumericTypeConverter
Abstract numeric type converter that supports numerics given in the form1234suffix
wheresuffix
denotes some multiplier.class
DefaultNumericConverter
-
Uses of NumericTypeConverter in com.github.rvesse.airline.types.numerics.abbreviated
Classes in com.github.rvesse.airline.types.numerics.abbreviated that implement NumericTypeConverter Modifier and Type Class Description class
AbbreviatedNumericTypeConverter
class
KiloAs1000
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
KiloAs1024
A numeric type converter that supports suffixes used to denote base 2 kilo unitsclass
MapAbbreviatedNumericTypeConverter
class
MultiSequenceAbbreviatedNumericTypeConverter
class
SequenceAbbreviatedNumericTypeConverter
-
Uses of NumericTypeConverter in com.github.rvesse.airline.types.numerics.bases
Classes in com.github.rvesse.airline.types.numerics.bases that implement NumericTypeConverter Modifier and Type Class Description class
Binary
A type converter that supports binary numbersclass
Hexadecimal
A type converter that supports hexadecimal numbersclass
Octal
A type converter that supports octal numbers
-