Uses of Class
org.hibernate.NullPrecedence
-
Packages that use NullPrecedence Package Description org.hibernate org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.spi org.hibernate.cfg org.hibernate.criterion org.hibernate.dialect -
-
Uses of NullPrecedence in org.hibernate
Methods in org.hibernate that return NullPrecedence Modifier and Type Method Description static NullPrecedence
NullPrecedence. parse(java.lang.String name)
Interprets a string representation of a NullPrecedence, returningnull
by default.static NullPrecedence
NullPrecedence. parse(java.lang.String name, NullPrecedence defaultValue)
Interprets a string representation of a NullPrecedence, returning the specified default if not recognized.static NullPrecedence
NullPrecedence. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NullPrecedence[]
NullPrecedence. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate with parameters of type NullPrecedence Modifier and Type Method Description static NullPrecedence
NullPrecedence. parse(java.lang.String name, NullPrecedence defaultValue)
Interprets a string representation of a NullPrecedence, returning the specified default if not recognized. -
Uses of NullPrecedence in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type NullPrecedence Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)
Apply a null precedence (NULLS FIRST, NULLS LAST) to be applied order-by clauses rendered into SQL queries. -
Uses of NullPrecedence in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return NullPrecedence Modifier and Type Method Description NullPrecedence
AbstractDelegatingSessionFactoryOptions. getDefaultNullPrecedence()
NullPrecedence
SessionFactoryOptions. getDefaultNullPrecedence()
Methods in org.hibernate.boot.spi with parameters of type NullPrecedence Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.cfg
Methods in org.hibernate.cfg that return NullPrecedence Modifier and Type Method Description NullPrecedence
Settings. getDefaultNullPrecedence()
Deprecated. -
Uses of NullPrecedence in org.hibernate.criterion
Methods in org.hibernate.criterion with parameters of type NullPrecedence Modifier and Type Method Description Order
Order. nulls(NullPrecedence nullPrecedence)
Defines precedence for nulls. -
Uses of NullPrecedence in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type NullPrecedence Modifier and Type Method Description java.lang.String
CockroachDB192Dialect. renderOrderByElement(java.lang.String expression, java.lang.String collation, java.lang.String order, NullPrecedence nulls)
java.lang.String
DB2Dialect. renderOrderByElement(java.lang.String expression, java.lang.String collation, java.lang.String order, NullPrecedence nullPrecedence)
Handle DB2 "support" for null precedence...java.lang.String
Dialect. renderOrderByElement(java.lang.String expression, java.lang.String collation, java.lang.String order, NullPrecedence nulls)
Renders an ordering fragmentjava.lang.String
MySQLDialect. renderOrderByElement(java.lang.String expression, java.lang.String collation, java.lang.String order, NullPrecedence nulls)
java.lang.String
SQLServer2008Dialect. renderOrderByElement(java.lang.String expression, java.lang.String collation, java.lang.String order, NullPrecedence nulls)
-