Class JdbcLiteralFormatterBinary<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.JdbcLiteralFormatterBinary<T>
-
- All Implemented Interfaces:
Serializable
,JdbcLiteralFormatter<T>
public class JdbcLiteralFormatterBinary<T> extends BasicJdbcLiteralFormatter<T>
JdbcLiteralFormatter
implementation for handling binary literals- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JdbcLiteralFormatterBinary(JavaType<T> javaType)
-
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
-
-
-
-
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
-
-