Uses of Class
com.twelvemonkeys.util.convert.ConversionException

Packages that use ConversionException
com.twelvemonkeys.util.convert   
 

Uses of ConversionException in com.twelvemonkeys.util.convert
 

Subclasses of ConversionException in com.twelvemonkeys.util.convert
 class MissingTypeException
          This exception may be thrown by PropertyConverters, if a conversion is attempted without type (class).
 class NoAvailableConverterException
          This exception may be thrown by PropertyConverters, if a conversion is attempted for a type (class), that has no registered PropertyConverter.
 class TypeMismathException
          This exception may be thrown by PropertyConverters, if a conversion is attempted on the wrong type (class).
 

Methods in com.twelvemonkeys.util.convert that throw ConversionException
 Object Converter.toObject(String pString, Class pType)
          Converts the string to an object of the given type.
 Object TimeConverter.toObject(String pString, Class pType, String pFormat)
          Converts the string to a time, using the given format for parsing.
 Object PropertyConverter.toObject(String pString, Class pType, String pFormat)
          Converts the string to an object, using the given format for parsing.
 Object NumberConverter.toObject(String pString, Class pType, String pFormat)
          Converts the string to a number, using the given format for parsing.
 Object DefaultConverter.toObject(String pString, Class pType, String pFormat)
          Converts the string to an object of the given type.
 Object DateConverter.toObject(String pString, Class pType, String pFormat)
          Converts the string to a date, using the given format for parsing.
abstract  Object Converter.toObject(String pString, Class pType, String pFormat)
          Converts the string to an object of the given type, parsing after the given format.
 String Converter.toString(Object pObject)
          Converts the object to a string, using object.toString()
 String TimeConverter.toString(Object pObject, String pFormat)
          Converts the object to a string, using the given format
 String PropertyConverter.toString(Object pObject, String pFormat)
          Converts the object to a string, using the given format
 String NumberConverter.toString(Object pObject, String pFormat)
          Converts the object to a string, using the given format
 String DefaultConverter.toString(Object pObject, String pFormat)
          Converts the object to a string, using pObject.toString().
 String DateConverter.toString(Object pObject, String pFormat)
          Converts the object to a string, using the given format
abstract  String Converter.toString(Object pObject, String pFormat)
          Converts the object to a string, using object.toString()
 



Copyright © 2015. All Rights Reserved.