Uses of Interface
acdp.types.Type

Packages that use Type
Package
Description
Contains the core interfaces needed to operate a database.
Contains classes for designing an ACDP database.
 
Contains the built-in column types as well as the super interface of all column types, the Type interface.
  • Uses of Type in acdp

    Methods in acdp that return Type
    Modifier and Type
    Method
    Description
    Information.ColumnInfo.type()
    Returns the type of this column, that is the type of the values a row can store in this column.
  • Uses of Type in acdp.design

    Classes in acdp.design that implement Type
    Modifier and Type
    Class
    Description
    class 
    The super class of all non-array custom and built-in column types with the exception of the built-in reference column type.
  • Uses of Type in acdp.internal.types

    Classes in acdp.internal.types that implement Type
    Modifier and Type
    Class
    Description
    class 
    acdp.internal.types.Type_
    The super class of all column types.
  • Uses of Type in acdp.types

    Subinterfaces of Type in acdp.types
    Modifier and Type
    Interface
    Description
    interface 
    The array column type with elements being references.
    interface 
    The array column type with elements of SimpleType.
    interface 
    The column type analogon of a Java boolean or Boolean type.
    interface 
    The column type analogon of a Java byte or Byte type.
    interface 
    The column type analogon of a Java double or Double type.
    interface 
    The column type analogon of a Java float or Float type.
    interface 
    The column type analogon of a Java int or Integer type.
    interface 
    The column type analogon of a Java long or Long type.
    interface 
    The reference column type.
    interface 
    The column type analogon of a Java short or Short type.
    interface 
    The column type analogon of a Java String type.