public class WktType extends Object implements ExtendedType<Wkt>
TRIM_VALUES_THRESHOLD| Constructor and Description |
|---|
WktType() |
| Modifier and Type | Method and Description |
|---|---|
String |
getClassName()
Returns a full name of Java class that this ExtendedType supports.
|
Wkt |
materializeObject(CallableStatement rs,
int index,
int type)
Reads an object from a stored procedure OUT parameter, converting it to class
returned by 'getClassName' method.
|
Wkt |
materializeObject(ResultSet rs,
int index,
int type)
Reads an object from JDBC ResultSet column, converting it to class returned by
'getClassName' method.
|
void |
setJdbcObject(PreparedStatement statement,
Wkt wkt,
int pos,
int type,
int scale)
Initializes a single parameter of a PreparedStatement with object value.
|
String |
toString(Wkt value)
Converts value of the supported type to a human-readable String representation.
|
public String getClassName()
ExtendedTypegetClassName in interface ExtendedType<Wkt>public void setJdbcObject(PreparedStatement statement, Wkt wkt, int pos, int type, int scale) throws Exception
ExtendedTypesetJdbcObject in interface ExtendedType<Wkt>Exceptionpublic Wkt materializeObject(ResultSet rs, int index, int type) throws Exception
ExtendedTypematerializeObject in interface ExtendedType<Wkt>Exception - if read error occurred, or an object can't be converted to a
target Java class.public Wkt materializeObject(CallableStatement rs, int index, int type) throws Exception
ExtendedTypematerializeObject in interface ExtendedType<Wkt>Exception - if read error occurred, or an object can't be converted to a
target Java class.public String toString(Wkt value)
ExtendedTypetoString in interface ExtendedType<Wkt>value - a value to convert to String.Copyright © 2001–2021 Apache Cayenne. All rights reserved.