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 respectNumericTypeConverterinstances 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 NumericTypeConverterParserBuilder. numericTypeConverterMethods 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 NumericTypeConverterDefaultTypeConverter. numericConverterMethods in com.github.rvesse.airline.types with parameters of type NumericTypeConverter Modifier and Type Method Description voidDefaultTypeConverter. setNumericConverter(NumericTypeConverter converter)voidTypeConverter. setNumericConverter(NumericTypeConverter converter)Sets the numeric type converter to use, ifnullthen 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 classComplexNumericTypeConverterAbstract numeric type converter that supports numerics given in the form1234suffixwheresuffixdenotes some multiplier.classDefaultNumericConverter -
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 classAbbreviatedNumericTypeConverterclassKiloAs1000A numeric type converter that supports standard using suffixes -k m b t- to abbreviate numbers expressed in terms of thousands, millions, billions or trillionsclassKiloAs1024A numeric type converter that supports suffixes used to denote base 2 kilo unitsclassMapAbbreviatedNumericTypeConverterclassMultiSequenceAbbreviatedNumericTypeConverterclassSequenceAbbreviatedNumericTypeConverter -
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 classBinaryA type converter that supports binary numbersclassHexadecimalA type converter that supports hexadecimal numbersclassOctalA type converter that supports octal numbers
-