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>
public class JdbcLiteralFormatterCharacterData<T> extends BasicJdbcLiteralFormatter<T>
JdbcLiteralFormatter
implementation for handling character data- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
NATIONALIZED_PREFIX
-
Constructor Summary
Constructors Constructor Description JdbcLiteralFormatterCharacterData(JavaType<T> javaType)
JdbcLiteralFormatterCharacterData(JavaType<T> javaType, boolean isNationalized)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
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 Detail
-
NATIONALIZED_PREFIX
public static final String NATIONALIZED_PREFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
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
-
-