Class GeoDBGeometryTypeDescriptor
- java.lang.Object
-
- org.hibernate.spatial.dialect.h2geodb.GeoDBGeometryTypeDescriptor
-
- All Implemented Interfaces:
java.io.Serializable,SqlTypeDescriptor
public class GeoDBGeometryTypeDescriptor extends java.lang.Object implements SqlTypeDescriptor
Descriptor for GeoDB Geometries.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static GeoDBGeometryTypeDescriptorINSTANCEAn instance of this Descriptor
-
Constructor Summary
Constructors Constructor Description GeoDBGeometryTypeDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanBeRemapped()Is this descriptor available for remapping?<X> ValueBinder<X>getBinder(JavaTypeDescriptor<X> javaTypeDescriptor)Get the binder (setting JDBC in-going parameter values) capable of handling values of the type described by the passed descriptor.<X> ValueExtractor<X>getExtractor(JavaTypeDescriptor<X> javaTypeDescriptor)Get the extractor (pulling out-going values from JDBC objects) capable of handling values of the type described by the passed descriptor.intgetSqlType()Return the JDBC type-code for the column mapped by this type.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.type.descriptor.sql.SqlTypeDescriptor
getJdbcRecommendedJavaTypeMapping
-
-
-
-
Field Detail
-
INSTANCE
public static final GeoDBGeometryTypeDescriptor INSTANCE
An instance of this Descriptor
-
-
Method Detail
-
getSqlType
public int getSqlType()
Description copied from interface:SqlTypeDescriptorReturn the JDBC type-code for the column mapped by this type.- Specified by:
getSqlTypein interfaceSqlTypeDescriptor- Returns:
- typeCode The JDBC type-code
-
canBeRemapped
public boolean canBeRemapped()
Description copied from interface:SqlTypeDescriptorIs this descriptor available for remapping?- Specified by:
canBeRemappedin interfaceSqlTypeDescriptor- Returns:
trueindicates this descriptor can be remapped; otherwise,false- See Also:
WrapperOptions.remapSqlTypeDescriptor(org.hibernate.type.descriptor.sql.SqlTypeDescriptor),Dialect.remapSqlTypeDescriptor(org.hibernate.type.descriptor.sql.SqlTypeDescriptor)
-
getBinder
public <X> ValueBinder<X> getBinder(JavaTypeDescriptor<X> javaTypeDescriptor)
Description copied from interface:SqlTypeDescriptorGet the binder (setting JDBC in-going parameter values) capable of handling values of the type described by the passed descriptor.- Specified by:
getBinderin interfaceSqlTypeDescriptor- Parameters:
javaTypeDescriptor- The descriptor describing the types of Java values to be bound- Returns:
- The appropriate binder.
-
getExtractor
public <X> ValueExtractor<X> getExtractor(JavaTypeDescriptor<X> javaTypeDescriptor)
Description copied from interface:SqlTypeDescriptorGet the extractor (pulling out-going values from JDBC objects) capable of handling values of the type described by the passed descriptor.- Specified by:
getExtractorin interfaceSqlTypeDescriptor- Parameters:
javaTypeDescriptor- The descriptor describing the types of Java values to be extracted- Returns:
- The appropriate extractor
-
-