All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.xmlmiddleware.conversions.ConvertBoolean
The following rules from the ODBC specification are followed; the JDBC specification does not address these in spite of allowing the conversions they apply to:
To convert to/from String, use an implementation of the StringFormatter interface.
public ConvertBoolean()
public static double toDouble(boolean b)
public static double toDouble(Boolean b)
public static Double toDoubleObject(boolean b)
public static Double toDoubleObject(Boolean b)
public static float toFloat(boolean b)
public static float toFloat(Boolean b)
public static Float toFloatObject(boolean b)
public static Float toFloatObject(Boolean b)
public static BigDecimal toBigDecimal(boolean b)
public static BigDecimal toBigDecimal(Boolean b)
public static long toLong(boolean b)
public static long toLong(Boolean b)
public static Long toLongObject(boolean b)
public static Long toLongObject(Boolean b)
public static int toInteger(boolean b)
public static int toInteger(Boolean b)
public static Integer toIntegerObject(boolean b)
public static Integer toIntegerObject(Boolean b)
public static short toShort(boolean b)
public static short toShort(Boolean b)
public static Short toShortObject(boolean b)
public static Short toShortObject(Boolean b)
public static byte toByte(boolean b)
public static byte toByte(Boolean b)
public static Byte toByteObject(boolean b)
public static Byte toByteObject(Boolean b)
public static boolean toBoolean(boolean b)
public static boolean toBoolean(Boolean b)
public static Boolean toBooleanObject(boolean b)
public static Boolean toBooleanObject(Boolean b)
All Packages Class Hierarchy This Package Previous Next Index