Uses of Class
acdp.design.SimpleType
Packages that use SimpleType
Package
Description
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 SimpleType in acdp.design
Methods in acdp.design that return SimpleTypeModifier and TypeMethodDescriptionstatic final SimpleType<Boolean>
Returns the column type analogon of a Javaboolean
orBoolean
type.static final SimpleType<Byte>
Returns the column type analogon of a Javabyte
orByte
type.static final SimpleType<Double>
Returns the column type analogon of a Javadouble
orDouble
type.static final SimpleType<Float>
Returns the column type analogon of a Javafloat
orFloat
type.static final SimpleType<Integer>
Returns column type analogon of a Javaint
orInteger
type.static final SimpleType<Long>
Returns the column type analogon of a Javalong
orLong
type.static final SimpleType<Short>
Returns the column type analogon of a Javashort
orShort
type.static final SimpleType<String>
ST.beString()
Returns the column type analogon of a JavaString
type.static final SimpleType<String>
ST.beString
(ST.Nulls nulls, ST.OutrowStringLength length) Returns the String column type with an outrow storage scheme and applying the "UTF-8" charset for any byte conversions.static final SimpleType<String>
Returns the String column type with an inrow storage scheme and applying the specified charset for any byte conversions.static final SimpleType<String>
ST.beString
(Charset charset, ST.Nulls nulls, ST.OutrowStringLength length) Returns the String column type with an outrow storage scheme and applying the specified charset for any byte conversions.Methods in acdp.design with parameters of type SimpleTypeModifier and TypeMethodDescriptionstatic final <T> Column<T>
CL.create
(SimpleType<T> simpleType) Creates a new column having the specified simple column type.static final <T> Column<T[]>
CL.ofArray
(int maxSize, SimpleType<T> elementType) Creates a new column of type array with an outrow storage scheme and with elements of the specified element type.static final <T> Column<T[]>
CL.ofArray
(Type.Scheme scheme, int maxSize, SimpleType<T> elementType) Creates a new column of type array with elements of the specified element type. -
Uses of SimpleType in acdp.types
Methods in acdp.types that return SimpleTypeModifier and TypeMethodDescriptionSimpleType<?>
ArrayType.elementType()
Returns the type of the elements of this array type.