Package org.apache.cayenne.access.types
Class GeoJsonType
- java.lang.Object
-
- org.apache.cayenne.access.types.GeoJsonType
-
- All Implemented Interfaces:
ExtendedType<GeoJson>
public class GeoJsonType extends Object implements ExtendedType<GeoJson>
- Since:
- 4.2
-
-
Field Summary
-
Fields inherited from interface org.apache.cayenne.access.types.ExtendedType
TRIM_VALUES_THRESHOLD
-
-
Constructor Summary
Constructors Constructor Description GeoJsonType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()Returns a full name of Java class that this ExtendedType supports.GeoJsonmaterializeObject(CallableStatement rs, int index, int type)Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.GeoJsonmaterializeObject(ResultSet rs, int index, int type)Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.voidsetJdbcObject(PreparedStatement statement, GeoJson geometry, int pos, int type, int scale)Initializes a single parameter of a PreparedStatement with object value.StringtoString(GeoJson value)Converts value of the supported type to a human-readable String representation.
-
-
-
Method Detail
-
getClassName
public String getClassName()
Description copied from interface:ExtendedTypeReturns a full name of Java class that this ExtendedType supports.- Specified by:
getClassNamein interfaceExtendedType<GeoJson>
-
setJdbcObject
public void setJdbcObject(PreparedStatement statement, GeoJson geometry, int pos, int type, int scale) throws Exception
Description copied from interface:ExtendedTypeInitializes a single parameter of a PreparedStatement with object value.- Specified by:
setJdbcObjectin interfaceExtendedType<GeoJson>- Throws:
Exception
-
materializeObject
public GeoJson materializeObject(ResultSet rs, int index, int type) throws Exception
Description copied from interface:ExtendedTypeReads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.- Specified by:
materializeObjectin interfaceExtendedType<GeoJson>- Throws:
Exception- if read error occurred, or an object can't be converted to a target Java class.
-
materializeObject
public GeoJson materializeObject(CallableStatement rs, int index, int type) throws Exception
Description copied from interface:ExtendedTypeReads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.- Specified by:
materializeObjectin interfaceExtendedType<GeoJson>- Throws:
Exception- if read error occurred, or an object can't be converted to a target Java class.
-
toString
public String toString(GeoJson value)
Description copied from interface:ExtendedTypeConverts value of the supported type to a human-readable String representation.- Specified by:
toStringin interfaceExtendedType<GeoJson>- Parameters:
value- a value to convert to String.
-
-