Uses of Class
org.h2.value.ExtTypeInfo
-
Packages that use ExtTypeInfo Package Description org.h2.value Data type and value implementations. -
-
Uses of ExtTypeInfo in org.h2.value
Subclasses of ExtTypeInfo in org.h2.value Modifier and Type Class Description class
ExtTypeInfoEnum
Extended parameters of the ENUM data type.class
ExtTypeInfoGeometry
Extended parameters of the GEOMETRY data type.class
ExtTypeInfoNumeric
Extended parameters of the NUMERIC data type.class
ExtTypeInfoRow
Extended parameters of the ROW data type.class
TypeInfo
Data type with parameters.Fields in org.h2.value declared as ExtTypeInfo Modifier and Type Field Description private ExtTypeInfo
TypeInfo. extTypeInfo
Methods in org.h2.value that return ExtTypeInfo Modifier and Type Method Description ExtTypeInfo
TypeInfo. getExtTypeInfo()
Returns the extended type information, or null.private ExtTypeInfo
Transfer. readTypeInfoEnum()
private ExtTypeInfo
Transfer. readTypeInfoGeometry()
private ExtTypeInfo
Transfer. readTypeInfoRow()
Methods in org.h2.value with parameters of type ExtTypeInfo Modifier and Type Method Description static TypeInfo
TypeInfo. getTypeInfo(int type, long precision, int scale, ExtTypeInfo extTypeInfo)
Get the data type with parameters object for the given value type and the specified parameters.Constructors in org.h2.value with parameters of type ExtTypeInfo Constructor Description TypeInfo(int valueType, long precision, int scale, ExtTypeInfo extTypeInfo)
Creates new instance of data type with parameters.
-