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 ConvertResultConvertResult.FAILURESpecial constant instance used to indicate failureMethods in com.github.rvesse.airline.types that return ConvertResultModifier and TypeMethodDescriptionprotected final ConvertResultDefaultTypeConverter.tryConvertBasicTypes(String name, Class<?> type, String value) Tries to convert the value if it is one of the common Java typesprotected final ConvertResultDefaultTypeConverter.tryConvertFromString(String name, Class<?> type, String value) Tries to convert the value by invoking a staticfromString(String)method on the typeprotected final ConvertResultDefaultTypeConverter.tryConvertFromValueOf(String name, Class<?> type, String value) Tries to convert the value by invoking a staticvalueOf(String)method on the typeprotected final ConvertResultDefaultTypeConverter.tryConvertStringConstructor(String name, Class<?> type, String value) Tries to convert the value by invoking a constructor that takes a string on the typeprotected final ConvertResultDefaultTypeConverter.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 ConvertResultComplexNumericTypeConverter.tryConvertBigDecimal(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertBigDecimal(String name, String value) protected ConvertResultComplexNumericTypeConverter.tryConvertBigInteger(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertBigInteger(String name, String value) protected ConvertResultComplexNumericTypeConverter.tryConvertByte(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertByte(String name, String value) protected ConvertResultComplexNumericTypeConverter.tryConvertDouble(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertDouble(String name, String value) protected ConvertResultComplexNumericTypeConverter.tryConvertFloat(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertFloat(String name, String value) protected ConvertResultComplexNumericTypeConverter.tryConvertInteger(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertInteger(String name, String value) protected ConvertResultComplexNumericTypeConverter.tryConvertLong(String name, String value) protected ConvertResultDefaultNumericConverter.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 ConvertResultComplexNumericTypeConverter.tryConvertShort(String name, String value) protected ConvertResultDefaultNumericConverter.tryConvertShort(String name, String value)