Uses of Interface
org.axiondb.DataType

Packages that use DataType
org.axiondb Core interfaces, identifiers, and exceptions. 
org.axiondb.engine Core database machinery. 
org.axiondb.engine.commands AxionCommand implementations. 
org.axiondb.engine.indexes   
org.axiondb.event Event model with listeners for database actions 
org.axiondb.functions Function implementations. 
org.axiondb.types DataType implementations. 
 

Uses of DataType in org.axiondb
 

Methods in org.axiondb that return DataType
 DataType Literal.getDataType()
           
 DataType SequenceEvaluator.getDataType()
           
 DataType Selectable.getDataType()
           
 DataType Database.getDataType(String name)
          Get the DataTypecurrently registered for the given name, or null.
 DataType ColumnIdentifier.getDataType()
          Returns my DataType, if any.
 DataType DataTypeFactory.makeNewInstance()
           
 DataType Column.getDataType()
          Get the DataTypeof this column.
 

Methods in org.axiondb with parameters of type DataType
 void Literal.setDataType(DataType type)
           
 void ColumnIdentifier.setDataType(DataType type)
          Sets my DataType, if any.
 

Constructors in org.axiondb with parameters of type DataType
Literal(Object value, DataType type)
           
Literal(Object value, DataType type, String aliasName)
           
Literal(DataType type)
           
ColumnIdentifier(TableIdentifier table, String columnName, String columnAlias, DataType type)
           
Column(String name, DataType type)
          Create column with the given name and type .
Column(String name, DataType type, Selectable defaultValue)
          Create column with the given name and type .
 

Uses of DataType in org.axiondb.engine
 

Methods in org.axiondb.engine that return DataType
 DataType SnapshotIsolationTransaction.getDataType(String name)
           
 DataType BaseDatabase.getDataType(String name)
           
 

Uses of DataType in org.axiondb.engine.commands
 

Methods in org.axiondb.engine.commands that return DataType
 DataType SubSelectCommand.getDataType()
           
 

Methods in org.axiondb.engine.commands with parameters of type DataType
protected  Object BaseAxionCommand.attemptToConvertValue(Object val, DataType type, ColumnIdentifier colid)
           
 

Uses of DataType in org.axiondb.engine.indexes
 

Methods in org.axiondb.engine.indexes that return DataType
protected  DataType BaseIndex.getDataType()
           
 

Methods in org.axiondb.engine.indexes with parameters of type DataType
protected  ObjectBTree ObjectBTreeIndex.createTree(File dataDirectory, String name, int minimizationFactor, DataType dataType)
           
protected  ObjectBTree StringBTreeIndex.createTree(File dataDirectory, String name, int minimizationFactor, DataType dataType)
           
 

Uses of DataType in org.axiondb.event
 

Methods in org.axiondb.event that return DataType
 DataType DatabaseTypeEvent.getDataType()
           
 

Constructors in org.axiondb.event with parameters of type DataType
DatabaseTypeEvent(String name, DataType type)
           
 

Uses of DataType in org.axiondb.functions
 

Fields in org.axiondb.functions declared as DataType
protected static DataType MatchesFunction.ARG_TYPE
           
protected static DataType MatchesFunction.RETURN_TYPE
           
 

Methods in org.axiondb.functions that return DataType
 DataType NotInFunction.getDataType()
           
 DataType SubstringFunction.getDataType()
          StringType
 DataType TruncateFunction.getDataType()
          StringType
 DataType DifferenceFunction.getDataType()
          StringType
 DataType NotExistsFunction.getDataType()
           
 DataType BitOrFunction.getDataType()
          DataType
 DataType SoundsLikeFunction.getDataType()
          BooleanType
 DataType ExistsFunction.getDataType()
           
 DataType MatchesFunction.getDataType()
           
 DataType DateDiffFunction.getDataType()
          DataType
 DataType CharFunction.getDataType()
          CharacterType
 DataType RowNumFunction.getDataType()
           
 DataType ConcatFunction.getDataType()
          StringType
 DataType NotFunction.getDataType()
           
 DataType SignFunction.getDataType()
          StringType
 DataType LikeToRegexpFunction.getDataType()
           
abstract  DataType BaseFunction.getDataType()
           
 DataType RoundFunction.getDataType()
          StringType
 DataType IsValidDateTimeFunction.getDataType()
           
 DataType Log10Function.getDataType()
          StringType
 DataType ContainsFunction.getDataType()
           
 DataType RTrimFunction.getDataType()
          StringType
 DataType InFunction.getDataType()
           
 DataType ReplaceFunction.getDataType()
          StringType
 DataType ArithmeticFunction.getDataType()
           
 DataType NowFunction.getDataType()
           
 DataType CharToDateFunction.getDataType()
          DataType
 DataType InStringFunction.getDataType()
          StringType
 DataType DateAddFunction.getDataType()
          DataType
 DataType CastAsFunction.getDataType()
           
 DataType IfThenFunction.getDataType()
          AnyType
 DataType BitAndFunction.getDataType()
          DataType
 DataType DateToCharFunction.getDataType()
          DataType
 DataType SpaceFunction.getDataType()
          StringType
 DataType IsNullFunction.getDataType()
           
 DataType DatePartFunction.getDataType()
          DataType
 DataType AggregateBigDecimalFunction.getDataType()
           
 DataType RPadFunction.getDataType()
          StringType
 DataType ModFunction.getDataType()
          StringType
 DataType FunctionIdentifier.getDataType()
           
 DataType LTrimFunction.getDataType()
          StringType
 DataType Base64DecodeFunction.getDataType()
           
 DataType UpperFunction.getDataType()
           
 DataType Base64EncodeFunction.getDataType()
           
 DataType ComparisonFunction.getDataType()
           
 DataType LengthFunction.getDataType()
           
 DataType AverageFunction.getDataType()
           
 DataType LowerFunction.getDataType()
           
 DataType LPadFunction.getDataType()
          StringType
 DataType IsNotNullFunction.getDataType()
           
 DataType CoalesceFunction.getDataType()
           
 DataType CountFunction.getDataType()
           
 DataType ABSFunction.getDataType()
           
 DataType AsciiFunction.getDataType()
           
 DataType SoundexFunction.getDataType()
          StringType
 DataType BaseBooleanBranchFunction.getDataType()
           
 

Uses of DataType in org.axiondb.types
 

Classes in org.axiondb.types that implement DataType
 class AnyType
          Generic implemention of DataType, for use by BindVariable.
 class BaseDataType
          Abstract base implemention of DataType.
 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.
 

Methods in org.axiondb.types that return DataType
 DataType TimestampType.makeNewInstance()
           
 DataType UnsignedShortType.makeNewInstance()
           
 DataType UnsignedIntegerType.makeNewInstance()
           
 DataType CompressedLOBType.makeNewInstance()
           
 DataType StringType.makeNewInstance()
           
 DataType ByteType.makeNewInstance()
           
 DataType ShortType.makeNewInstance()
           
 DataType BigDecimalType.makeNewInstance()
           
 DataType BigDecimalType.makeNewInstance(int scale)
           
abstract  DataType BaseDataType.makeNewInstance()
           
 DataType CharacterType.makeNewInstance()
           
 DataType BooleanType.makeNewInstance()
           
 DataType LOBType.makeNewInstance()
           
 DataType AnyType.makeNewInstance()
           
 DataType UnsignedByteType.makeNewInstance()
           
 DataType DateType.makeNewInstance()
           
 DataType IntegerType.makeNewInstance()
           
 DataType VarBinaryType.makeNewInstance()
           
 DataType LongType.makeNewInstance()
           
 DataType ObjectType.makeNewInstance()
           
 DataType FloatType.makeNewInstance()
           
 DataType TimeType.makeNewInstance()