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 NullPrecedenceNullPrecedence. parse(String name)Interprets a string representation of a NullPrecedence, returningnullby default.static NullPrecedenceNullPrecedence. parse(String name, NullPrecedence defaultValue)Interprets a string representation of a NullPrecedence, returning the specified default if not recognized.static NullPrecedenceNullPrecedence. valueOf(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 NullPrecedenceNullPrecedence. parse(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 SessionFactoryBuilderSessionFactoryBuilder. 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 NullPrecedenceAbstractDelegatingSessionFactoryOptions. getDefaultNullPrecedence()NullPrecedenceSessionFactoryOptions. getDefaultNullPrecedence()Methods in org.hibernate.boot.spi with parameters of type NullPrecedence Modifier and Type Method Description TAbstractDelegatingSessionFactoryBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence) -
Uses of NullPrecedence in org.hibernate.cfg
Methods in org.hibernate.cfg that return NullPrecedence Modifier and Type Method Description NullPrecedenceSettings. getDefaultNullPrecedence()Deprecated. -
Uses of NullPrecedence in org.hibernate.criterion
Methods in org.hibernate.criterion with parameters of type NullPrecedence Modifier and Type Method Description OrderOrder. 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 StringCockroachDB192Dialect. renderOrderByElement(String expression, String collation, String order, NullPrecedence nulls)StringDB2Dialect. renderOrderByElement(String expression, String collation, String order, NullPrecedence nullPrecedence)Handle DB2 "support" for null precedence...StringDialect. renderOrderByElement(String expression, String collation, String order, NullPrecedence nulls)Renders an ordering fragmentStringMySQLDialect. renderOrderByElement(String expression, String collation, String order, NullPrecedence nulls)StringSQLServer2008Dialect. renderOrderByElement(String expression, String collation, String order, NullPrecedence nulls)
-