Class JdbcLiteralFormatterCharacterData<T>
java.lang.Object
org.hibernate.type.descriptor.jdbc.spi.AbstractJdbcLiteralFormatter<T>
org.hibernate.type.descriptor.jdbc.spi.BasicJdbcLiteralFormatter<T>
org.hibernate.type.descriptor.jdbc.internal.JdbcLiteralFormatterCharacterData<T>
- All Implemented Interfaces:
Serializable
,JdbcLiteralFormatter<T>
JdbcLiteralFormatter
implementation for handling character data- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionJdbcLiteralFormatterCharacterData
(JavaType<T> javaType) JdbcLiteralFormatterCharacterData
(JavaType<T> javaType, boolean isNationalized) -
Method Summary
Modifier and TypeMethodDescriptionvoid
appendJdbcLiteral
(SqlAppender appender, Object value, Dialect dialect, WrapperOptions wrapperOptions) Append a SQL literal representing the given Java value to a fragment of SQL which is being built.Methods inherited from class org.hibernate.type.descriptor.jdbc.spi.BasicJdbcLiteralFormatter
unwrap
Methods inherited from class org.hibernate.type.descriptor.jdbc.spi.AbstractJdbcLiteralFormatter
getJavaType
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.jdbc.JdbcLiteralFormatter
toJdbcLiteral
-
Field Details
-
NATIONALIZED_PREFIX
- See Also:
-
-
Constructor Details
-
JdbcLiteralFormatterCharacterData
-
JdbcLiteralFormatterCharacterData
-
-
Method Details
-
appendJdbcLiteral
public void appendJdbcLiteral(SqlAppender appender, Object value, Dialect dialect, WrapperOptions wrapperOptions) Description copied from interface:JdbcLiteralFormatter
Append a SQL literal representing the given Java value to a fragment of SQL which is being built.- Parameters:
appender
- an operation that appends to the SQL fragmentvalue
- a Java object whose value can be represented as a SQL literaldialect
- the SQL dialect
-