Uses of Class
com.github.rvesse.airline.types.ConvertResult
Packages that use ConvertResult
-
Uses of ConvertResult in com.github.rvesse.airline.types
Fields in com.github.rvesse.airline.types declared as ConvertResultModifier and TypeFieldDescriptionstatic final ConvertResult
ConvertResult.FAILURE
Special constant instance used to indicate failureMethods in com.github.rvesse.airline.types that return ConvertResultModifier and TypeMethodDescriptionprotected final ConvertResult
DefaultTypeConverter.tryConvertBasicTypes
(String name, Class<?> type, String value) Tries to convert the value if it is one of the common Java typesprotected final ConvertResult
DefaultTypeConverter.tryConvertFromString
(String name, Class<?> type, String value) Tries to convert the value by invoking a staticfromString(String)
method on the typeprotected final ConvertResult
DefaultTypeConverter.tryConvertFromValueOf
(String name, Class<?> type, String value) Tries to convert the value by invoking a staticvalueOf(String)
method on the typeprotected final ConvertResult
DefaultTypeConverter.tryConvertStringConstructor
(String name, Class<?> type, String value) Tries to convert the value by invoking a constructor that takes a string on the typeprotected final ConvertResult
DefaultTypeConverter.tryConvertStringMethod
(String name, Class<?> type, String value, String methodName) Tries to convert the value by invoking a static method on the type -
Uses of ConvertResult in com.github.rvesse.airline.types.numerics
Methods in com.github.rvesse.airline.types.numerics that return ConvertResultModifier and TypeMethodDescriptionprotected ConvertResult
ComplexNumericTypeConverter.tryConvertBigDecimal
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertBigDecimal
(String name, String value) protected ConvertResult
ComplexNumericTypeConverter.tryConvertBigInteger
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertBigInteger
(String name, String value) protected ConvertResult
ComplexNumericTypeConverter.tryConvertByte
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertByte
(String name, String value) protected ConvertResult
ComplexNumericTypeConverter.tryConvertDouble
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertDouble
(String name, String value) protected ConvertResult
ComplexNumericTypeConverter.tryConvertFloat
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertFloat
(String name, String value) protected ConvertResult
ComplexNumericTypeConverter.tryConvertInteger
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertInteger
(String name, String value) protected ConvertResult
ComplexNumericTypeConverter.tryConvertLong
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertLong
(String name, String value) DefaultNumericConverter.tryConvertNumerics
(String name, Class<?> type, String value) NumericTypeConverter.tryConvertNumerics
(String name, Class<?> type, String value) Tries to convert common numeric typesprotected ConvertResult
ComplexNumericTypeConverter.tryConvertShort
(String name, String value) protected ConvertResult
DefaultNumericConverter.tryConvertShort
(String name, String value)