Class Collation
- java.lang.Object
-
- org.hibernate.sql.ast.tree.expression.Collation
-
- All Implemented Interfaces:
JdbcMappingContainer
,SqlExpressible
,SqlAstNode
public class Collation extends Object implements SqlExpressible, SqlAstNode
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SqlAstWalker walker)
int
forEachJdbcType(int offset, IndexedConsumer<JdbcMapping> action)
Visit each JdbcMapping starting from the given offsetString
getCollation()
JdbcMapping
getJdbcMapping()
Anything that is expressible at the SQL AST level would be of basic type.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.metamodel.mapping.JdbcMappingContainer
forEachJdbcType, getJdbcTypeCount, getSingleJdbcMapping
-
Methods inherited from interface org.hibernate.metamodel.mapping.SqlExpressible
getJdbcMapping
-
-
-
-
Constructor Detail
-
Collation
public Collation(String collation)
-
-
Method Detail
-
getCollation
public String getCollation()
-
accept
public void accept(SqlAstWalker walker)
- Specified by:
accept
in interfaceSqlAstNode
-
forEachJdbcType
public int forEachJdbcType(int offset, IndexedConsumer<JdbcMapping> action)
Description copied from interface:JdbcMappingContainer
Visit each JdbcMapping starting from the given offset- Specified by:
forEachJdbcType
in interfaceJdbcMappingContainer
-
getJdbcMapping
public JdbcMapping getJdbcMapping()
Description copied from interface:SqlExpressible
Anything that is expressible at the SQL AST level would be of basic type.- Specified by:
getJdbcMapping
in interfaceSqlExpressible
-
-