Uses of Class
org.axiondb.types.BaseDataType

Packages that use BaseDataType
org.axiondb.types DataType implementations. 
 

Uses of BaseDataType in org.axiondb.types
 

Subclasses of BaseDataType in org.axiondb.types
 class AnyType
          Generic implemention of DataType, for use by BindVariable.
 class BaseNumberDataType
          An abstract base DataType for Number types.
 class BigDecimalType
          A DataType representing an number value.
 class BooleanType
          A DataType representing a Boolean value.
 class ByteType
          A DataType representing a byte value.
 class CharacterType
          A DataType representing a single char value.
 class CompressedLOBType
          A DataType representing a compressed LOB value.
 class DateType
          Implements a date type which can generate instances of java.sql.Date and other JDBC date-related types.
 class FloatType
          A DataType representing an float value.
 class IntegerType
          A DataType representing an integer value.
 class LOBType
          A DataType representing a Large Object (LOB), for example a Clob or Blob.
 class LongType
          A DataType representing a long value.
 class ObjectType
          A DataType representing a Serializable object value.
 class ShortType
          A DataType representing a short value.
 class StringType
          A DataType representing a String value.
 class TimestampType
          A DataType representing a timestamp value.
 class TimeType
          Implements a date type which can generate instances of java.sql.Date and other JDBC date-related types.
 class UnsignedByteType
          A DataType representing an unsigned byte value.
 class UnsignedIntegerType
          A DataType representing a unsigned integer value as a long.
 class UnsignedShortType
          A DataType representing an unsigned short value as an int.
 class VarBinaryType
          A DataType representing a BinaryArray value.