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.designMethods in acdp.design that return SimpleTypeModifier and TypeMethodDescriptionstatic final SimpleType<Boolean>Returns the column type analogon of a JavabooleanorBooleantype.static final SimpleType<Byte>Returns the column type analogon of a JavabyteorBytetype.static final SimpleType<Double>Returns the column type analogon of a JavadoubleorDoubletype.static final SimpleType<Float>Returns the column type analogon of a JavafloatorFloattype.static final SimpleType<Integer>Returns column type analogon of a JavaintorIntegertype.static final SimpleType<Long>Returns the column type analogon of a JavalongorLongtype.static final SimpleType<Short>Returns the column type analogon of a JavashortorShorttype.static final SimpleType<String>ST.beString()Returns the column type analogon of a JavaStringtype.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.typesMethods in acdp.types that return SimpleTypeModifier and TypeMethodDescriptionSimpleType<?>ArrayType.elementType()Returns the type of the elements of this array type.