Uses of Interface
net.sourceforge.sqlunit.IType

Packages that use IType
net.sourceforge.sqlunit Classes for the SQLUnit core package. 
net.sourceforge.sqlunit.types Implementations of various datatypes. 
net.sourceforge.sqlunit.utils Utility classes for SQLUnit. 
 

Uses of IType in net.sourceforge.sqlunit
 

Methods in net.sourceforge.sqlunit that return IType
static IType TypeFactory.getInstance(int typeId)
          Given an SQL Type Id, instantiates and returns a partially populated IType object of the specified type.
static IType TypeFactory.getInstance(java.lang.String name)
          Given an XML type name, instantiates and returns a partially populated IType object of the specified type.
 

Uses of IType in net.sourceforge.sqlunit.types
 

Classes in net.sourceforge.sqlunit.types that implement IType
 class ArrayType
          Models an Array type.
 class BigDecimalType
          Models a BigDecimal data type.
 class BinaryType
          Models long binary text.
 class BlobType
          Models a BLOB type.
 class BooleanType
          Models a Boolean type.
 class ByteArrayType
          Models a Binary type.
 class ByteType
          Models a Byte type.
 class ClobType
          Models a CLOB type.
 class DateType
          Models a DATE type.
 class DoubleType
          Models a Double type.
 class FloatType
          Models a Float type.
 class IntegerType
          Models a Integer type.
 class JavaObjectType
          Models a JAVA_OBJECT type.
 class LongType
          Models a Long type.
 class OracleCursorType
          Models a Oracle CURSOR type.
 class OtherType
          Models the OTHER type.
 class ShortType
          Models a Short type.
 class StringType
          Models a String type.
 class TextType
          Models long character text (TEXT).
 class TimestampType
          Models a TIMESTAMP type.
 class TimeType
          Models a TIME type.
 class UnsupportedType
          Defines behavior for a type which is not supported by SQLUnit.
 

Uses of IType in net.sourceforge.sqlunit.utils
 

Methods in net.sourceforge.sqlunit.utils with parameters of type IType
static boolean TypeUtils.checkIfNull(IType typeObj1, IType typeObj2)
          Returns true if either of the IType arguments contain null values.
static int TypeUtils.compareNulls(IType typeObj1, IType typeObj2)
          Compares two IType object values, one or both of which is NULL.