Uses of Annotation Interface
org.hibernate.Incubating
Packages that use Incubating
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.A set of mapping annotations which extend the O/R mapping annotations defined by JPA.
Annotations used to drive annotation processors:
@Find
is used to generate finder methods using the Metamodel
Generator,
@HQL
and @SQL
are used to generate query methods using the Metamodel
Generator, and
CheckHQL
instructs the Query Validator to check all HQL queries
in the annotated package or type.This package defines an easy way to extend Hibernate with user-defined
annotations that define customized O/R mappings of annotated entities
and annotated entity attributes.
This package contains the interfaces that make up the bootstrap API
for Hibernate.
This package defines the boot-time metamodel, which is an interpretation
of the domain model (entity classes, embeddable classes, and attributes)
and the mapping of these "domain model parts" to the database.
Defines the SPI of a
registry
of JPA
AttributeConverter
s.This API allows intervention by generic code in the process of determining the names of
database objects (tables, columns, and constraints).
Some SPIs related to DDL generation and schema management.
Overall, this module is responsible for taking
managed-resources and
building the
hibernate-models
model (ClassDetails, etc.)
to ultimately be bound into Hibernate's boot-time model.A range of SPIs allowing integration with—and customization of—the process of building metadata.
Package defining bytecode code enhancement (instrumentation) support.
Support for bytecode interceptor implementations.
This package defines APIs for configuring Hibernate.
This package defines the SPI of a framework for lazy-initializing
and state-tracking collection wrappers.
This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
Support for
Dialect
-specific aggregate column types,
including user-defined composite types, and JSON or XML types.Defines contracts for JDBC batching support.
Package defining support for executing mutation SQL statements produced by an
entity persister or
collection
persister.
SPI contracts supporting various aspects of JDBC interaction.
An SPI for dealing with parameters of native queries.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
An SPI for the event listener registration service.
Defines the event types and event listener interfaces for
events produced by the stateful
Session
.This package defines an abstraction over all kinds of automatic
value generation, including id generation and version number
generation.
Enhanced/improved versions of table and sequence based identifier generators
targeting portability and unified configuration.
This package defines the Hibernate configuration-time mapping model.
This package defines an API for accessing the runtime metamodel describing persistent
entities in Java and their mappings to the relational database schema.
Defines the runtime mapping metamodel, which describes the mapping
of the application's domain model parts (entities, attributes) to
relational database objects (tables, columns).
Defines the runtime domain metamodel, which describes the Java aspect of
the application's domain model parts (entities, attributes).
An SPI supporting custom instantiation of
entity instances and
embeddable objects.
This package abstracts persistence mechanisms for collections.
This package abstracts persistence mechanisms for entities.
Defines support for performing mutation operations originating
from persistence-context events.
Defines an SPI for calling stored procedures and functions.
Everything related to HQL/JPQL, native SQL, and criteria queries.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
SPI for extending
HibernateCriteriaBuilder
with additional functionality by registering a Service
.Package defining support for HQL, including JPQL as a subset of HQL.
SPIs for HQL support.
Support for named queries
Support SQL functions in the SQM model.
Support for defining result set mappings
used in
NativeQuery
, ProcedureCall
,
and StoredProcedureQuery
.Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
SPIs for native SQL query support.
An SPI for defining, registering, and rendering functions in HQL.
Package defining support for
SqmFunctionDescriptor
handling.SPI-level SQM contracts
This package contains the classes that make up the SQM tree nodes.
Nodes representing path expressions in the SQM tree.
Nodes representing expressions in the SQM tree.
Nodes representing root entities and joins in the SQM tree.
Nodes representing
insert
statements in the SQM tree.Programmatic access to the schema management tool.
A tiny SPI for dealing with compound names and navigable paths.
Package defining a SQL AST for use in generation of SQL.
AST nodes representing expressions in a SQL tree.
SPI for execution of SQL statements via JDBC.
Package contains specialized SQL AST nodes and builders for table mutations
of model parts
originating from normal persistence-context events.
Defines domain result graphs.
Defines an SPI for schema information extraction from the database via JDBC.
An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation.
An SPI for tooling related to DDL generation, export, migration, and validation.
A Hibernate
Type
is a strategy for mapping a Java
property type to a JDBC type or types.An SPI for basic-typed value conversions, including support for handling
JPA
AttributeConverter
instances as part of
the Hibernate Type
system.Integrates a range of types defined by the JDK with the type system
of Hibernate.
Defines handling of almost the full range of standard JDBC-defined SQL data types.
An API for working with abstract families of DDL types
parameterized by varying length, precision, and scale.
Support for type mappings which format composite values to a structured
text format (JSON or XML) for storage in a database-specific column type
supporting that structured format.
Defines a registry for Hibernate
Type
s.An API for user-defined custom types which extend the set of built-in
types defined in
org.hibernate.type
.Packages with annotations of type Incubating
Package
Description
Package defining a SQL AST for use in generation of SQL.
Common APIs used internally, in the SQL tree,
in the dialects, and in the criteria query API.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Defines the runtime domain metamodel, which describes the Java aspect of
the application's domain model parts (entities, attributes).
Support for execution of SQL statements via JDBC.
Support for type mappings which format composite values to a structured
text format (JSON or XML) for storage in a database-specific column type
supporting that structured format.
Package defining support for
SqmFunctionDescriptor
handling.Implements and extends the JPA-defined entity graph API.
Defines domain result graphs.
Implements the SPI for basic-typed value conversions.
Defines the runtime mapping metamodel, which describes the mapping
of the application's domain model parts (entities, attributes) to
relational database objects (tables, columns).
This package defines an API for accessing the runtime metamodel describing persistent
entities in Java and their mappings to the relational database schema.
Package contains specialized SQL AST nodes and builders for table mutations
of model parts
originating from normal persistence-context events.
Package defining support for executing mutation SQL statements produced by an
entity persister or
collection
persister.
Defines support for performing mutation operations against collections.
Defines support for performing mutation operations originating
from persistence-context events.
Support SQL functions in the SQM model.
Annotations used to drive annotation processors:
@Find
is used to generate finder methods using the Metamodel
Generator,
@HQL
and @SQL
are used to generate query methods using the Metamodel
Generator, and
CheckHQL
instructs the Query Validator to check all HQL queries
in the annotated package or type.Package for processing JDBC
ResultSet
s into hydrated domain model graphs
based on a "load plan" defined by a "domain result graph", that is, one or more
DomainResult
nodes with zero or more
Fetch
nodes.This package defines an internal SPI abstracting over implementations
of the APIs defined in
org.hibernate.graph
.An SPI supporting custom instantiation of
entity instances and
embeddable objects.
SPI for extending
HibernateCriteriaBuilder
with additional functionality by registering a Service
.SPI for execution of SQL statements via JDBC.
An SPI for basic-typed value conversions, including support for handling
JPA
AttributeConverter
instances as part of
the Hibernate Type
system.This package defines a semantic model of HQL queries.
Contains a framework of strategies for efficient retrieval of
database-generated values.
-
Uses of Incubating in org.hibernate
Classes in org.hibernate with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Implemented by custom listeners that respond to low-level events involving interactions between theSession
and the database or second-level cache.enum
Enumerates the possible storage strategies for offset or zoned datetimes.Methods in org.hibernate with annotations of type IncubatingModifier and TypeMethodDescriptionvoid
StatelessSession.deleteMultiple
(List<Object> entities) Delete multiple records.Filter.getParameterValue
(String name) Obtain the argument currently bound to the filter parameter with the given name.void
StatelessSession.insertMultiple
(List<Object> entities) Insert multiple records.void
StatelessSession.updateMultiple
(List<Object> entities) Update multiple records.void
Use a SQLmerge into
statement to perform an upsert, that is, to insert the record if it does not exist, or update it if it already exists.void
Use a SQLmerge into
statement to perform an upsert.void
StatelessSession.upsertMultiple
(List<Object> entities) Perform an upsert, that is, to insert the record if it does not exist, or update the record if it already exists, for each given record. -
Uses of Incubating in org.hibernate.annotations
Classes in org.hibernate.annotations with annotations of type IncubatingModifier and TypeClassDescription@interface
Defines how to handle discriminator values which are not explicitly mapped with AnyDiscriminatorValue.@interface
Specifies the maximum length of a SQL array type mapped by the annotated attribute.@interface
Associates a user-defined annotation with anAttributeBinder
, allowing the annotation to drive some custom model binding.enum
Describes the data layout used for storing an object into the query cache.@interface
Specifies a collation to use when generating DDL for the column mapped by the annotated field or property.@interface
AnnotatingConcreteProxy
on the root entity class of an inheritance hierarchy will allow types of that hierarchy to always produce proxies that resolve to the concrete subtype class.interface
Allows certain annotations to be overridden in a given SQLDialect
.@interface
Deprecated, for removal: This API element is subject to removal in a future version.@interface
Marks the canonical constructor to be used for instantiation of an embeddable.@interface
Generator that picks a strategy based on the dialect.@interface
Allows to specify the target of a foreign-key using a "target attribute" as opposed to join column(s).@interface
Configures the layout for the entity or collection data in a query cache.@interface
Describes a soft-delete indicator mapping.@interface
Specifies the UDT (user defined type) name for the annotated embeddable type or embedded attribute.@interface
Specifies the mapped column for storing the time zone information, for use in conjunction withTimeZoneStorageType.COLUMN
orTimeZoneStorageType.AUTO
.@interface
Specifies how the time zone information of a persistent property or field should be persisted.enum
Describes the storage of timezone information for zoned datetime types, in particular, for the typesOffsetDateTime
andZonedDateTime
.@interface
Associates a user-defined annotation with aTypeBinder
, allowing the annotation to drive some custom model binding.@interface
Maps an entity to a database view. -
Uses of Incubating in org.hibernate.annotations.processing
Classes in org.hibernate.annotations.processing with annotations of type IncubatingModifier and TypeClassDescription@interface
Indicates that a package or top-level type contains HQL or JPQL queries encoded as static strings that should be validated at compile time by the Metamodel Generator or Query Validator.@interface
Indicates that a package or top-level type should be ignored by the Hibernate annotation processor.@interface
Identifies a method of an abstract class or interface as defining the signature of a finder method, with an implementation generated automatically by the Hibernate Metamodel Generator.@interface
Identifies a method of an abstract class or interface as defining the signature of a method which is used to execute the given HQL query, with an implementation generated automatically by the Hibernate Metamodel Generator.@interface
Indicates that a parameter of typeString
of a finder method is a pattern involving wildcard characters_
and%
.@interface
Identifies a method of an abstract class or interface as defining the signature of a method which is used to execute the given SQL query, with an implementation generated automatically by the Hibernate Metamodel Generator. -
Uses of Incubating in org.hibernate.binder
Classes in org.hibernate.binder with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
AttributeBinder<A extends Annotation>
Allows a user-written annotation to drive some customized model binding.interface
TypeBinder<A extends Annotation>
Allows a user-written annotation to drive some customized model binding. -
Uses of Incubating in org.hibernate.boot
Methods in org.hibernate.boot with annotations of type IncubatingModifier and TypeMethodDescriptionSessionFactoryBuilder.applyJsonFormatMapper
(FormatMapper jsonFormatMapper) Specifies aformat mapper
to use for serialization/deserialization of JSON properties.SessionFactoryBuilder.applyQueryCacheLayout
(CacheLayout cacheLayout) Specifies the defaultCacheLayout
to use for query cache entries.SessionFactoryBuilder.applyXmlFormatMapper
(FormatMapper xmlFormatMapper) Specifies aformat mapper
to use for serialization/deserialization of XML properties. -
Uses of Incubating in org.hibernate.boot.archive.scan.spi
Classes in org.hibernate.boot.archive.scan.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Support for scanning various sources to detectmanaged resources
for apersistence unit
. -
Uses of Incubating in org.hibernate.boot.model
Methods in org.hibernate.boot.model with annotations of type IncubatingModifier and TypeMethodDescriptiondefault void
TypeContributions.contributeAttributeConverter
(Class<? extends AttributeConverter<?, ?>> converterClass) Register anAttributeConverter
class.default void
TypeContributions.contributeType
(CompositeUserType<?> type) Register aCompositeUserType
as the implicit (auto-applied) type for values of typeCompositeUserType.returnedClass()
. -
Uses of Incubating in org.hibernate.boot.model.convert.spi
Classes in org.hibernate.boot.model.convert.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Manages resolution of auto-appliedAttributeConverter
references for specific mappingsinterface
A registry for JPA converters. -
Uses of Incubating in org.hibernate.boot.model.naming
Classes in org.hibernate.boot.model.naming with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
A set of rules for determining the logical name of a mapped relational database object when the mapping for an element of the Java domain model is not explicitly specified, neither in annotations of the Java code, nor in an XML-based mapping document.interface
A set of rules for determining the physical names of objects in a relational database schema from the logical names specified by the object/relational mappings. -
Uses of Incubating in org.hibernate.boot.model.relational
Classes in org.hibernate.boot.model.relational with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
A pluggable contract that allows ordering of columns withinTable
,Constraint
andUserDefinedObjectType
.Methods in org.hibernate.boot.model.relational with annotations of type IncubatingModifier and TypeMethodDescriptionNamespace.createUserDefinedArrayType
(Identifier logicalTypeName, Function<Identifier, UserDefinedArrayType> creator) Creates a mapping UDT instance.Namespace.createUserDefinedType
(Identifier logicalTypeName, Function<Identifier, UserDefinedObjectType> creator) Creates a mapping UDT instance.Namespace.getDependencyOrderedUserDefinedTypes()
Namespace.getUserDefinedTypes()
Namespace.locateUserDefinedArrayType
(Identifier logicalTypeName) Returns the array UDT with the specified logical UDT name.Namespace.locateUserDefinedType
(Identifier logicalTypeName) Returns the object UDT with the specified logical UDT name. -
Uses of Incubating in org.hibernate.boot.models
Classes in org.hibernate.boot.models with annotations of type Incubating -
Uses of Incubating in org.hibernate.boot.spi
Classes in org.hibernate.boot.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Collector for contributions from contributorsinterface
Contract allowing pluggable contributions of additional mapping objects.interface
Defines a context for things available during the process of bootstrapping aSessionFactory
which are expected to be cleaned up after theSessionFactory
is built.class
Exposes the ClassmateTypeResolver
andMemberResolver
.Methods in org.hibernate.boot.spi with annotations of type IncubatingModifier and TypeMethodDescriptionBootstrapContext.getClassmateContext()
Access to the sharedClassmateContext
object used throughout the bootstrap process.SessionFactoryOptions.getDefaultTenantIdentifierJavaType()
The default tenant identifier java type to use, in case no explicit tenant identifier property is defined.SessionFactoryOptions.getDefaultTimeZoneStorageStrategy()
SessionFactoryOptions.getJsonFormatMapper()
The format mapper to use for serializing/deserializing JSON data.default int
MetadataBuildingContext.getPreferredSqlTypeCodeForArray()
int
SessionFactoryOptions.getPreferredSqlTypeCodeForArray()
default int
MetadataBuildingContext.getPreferredSqlTypeCodeForBoolean()
int
SessionFactoryOptions.getPreferredSqlTypeCodeForBoolean()
default int
MetadataBuildingContext.getPreferredSqlTypeCodeForDuration()
int
SessionFactoryOptions.getPreferredSqlTypeCodeForDuration()
default int
MetadataBuildingContext.getPreferredSqlTypeCodeForInstant()
int
SessionFactoryOptions.getPreferredSqlTypeCodeForInstant()
default int
MetadataBuildingContext.getPreferredSqlTypeCodeForUuid()
int
SessionFactoryOptions.getPreferredSqlTypeCodeForUuid()
SessionFactoryOptions.getQueryCacheLayout()
SessionFactoryOptions.getXmlFormatMapper()
The format mapper to use for serializing/deserializing XML data.default boolean
MetadataBuildingContext.isPreferJavaTimeJdbcTypesEnabled()
default boolean
MetadataBuildingContext.isPreferNativeEnumTypesEnabled()
boolean
MetadataBuildingOptions.isXmlFormatMapperLegacyFormatEnabled()
Whether to use the legacy format for serializing/deserializing XML data.boolean
SessionFactoryOptions.isXmlFormatMapperLegacyFormatEnabled()
Whether to use the legacy format for serializing/deserializing XML data.void
MetadataImplementor.orderColumns
(boolean forceOrdering) -
Uses of Incubating in org.hibernate.bytecode.enhance.spi
Classes in org.hibernate.bytecode.enhance.spi with annotations of type IncubatingModifier and TypeClassDescriptionenum
The expected behavior when encountering a class that cannot be enhanced, in particular when attribute names don't match field names.Methods in org.hibernate.bytecode.enhance.spi with annotations of type IncubatingModifier and TypeMethodDescriptiondefault UnsupportedEnhancementStrategy
EnhancementContext.getUnsupportedEnhancementStrategy()
-
Uses of Incubating in org.hibernate.bytecode.enhance.spi.interceptor
Classes in org.hibernate.bytecode.enhance.spi.interceptor with annotations of type Incubating -
Uses of Incubating in org.hibernate.cfg
Fields in org.hibernate.cfg with annotations of type IncubatingModifier and TypeFieldDescriptionstatic final String
JdbcSettings.DIALECT_NATIVE_PARAM_MARKERS
Controls whether to use JDBC markers (`?`) or dialect native markers for parameters within preparable SQL statements.static final String
MappingSettings.ID_DB_STRUCTURE_NAMING_STRATEGY
An implicit naming strategy for database structures (tables, sequences) related to identifier generators.static final String
MappingSettings.JAVA_TIME_USE_DIRECT_JDBC
Indicates whether to use Java Time references at the JDBC boundary for binding and extracting temporal values to/from the database using the support added in JDBC 4.2 via PreparedStatement.setObject(int, Object, int) and ResultSet.getObject(int, Class).static final String
PersistenceSettings.JPA_CALLBACKS_ENABLED
Allows JPA callbacks (viaPreUpdate
and friends) to be completely disabled.static final String
MappingSettings.JSON_FORMAT_MAPPER
Specifies aFormatMapper
used for JSON serialization and deserialization, either: an instance ofFormatMapper
, aClass
representing a class that implementsFormatMapper
, the name of a class that implementsFormatMapper
, or one of the shorthand constantsjackson
orjsonb
.static final String
QuerySettings.JSON_FUNCTIONS_ENABLED
Boolean setting to control if the use of tech preview JSON functions in HQL is enabled.static final String
MappingSettings.PREFER_NATIVE_ENUM_TYPES
Indicates that named SQLenum
types should be used by default instead ofvarchar
on databases which support named enum types.static final String
MappingSettings.PREFERRED_ARRAY_JDBC_TYPE
Specifies the preferred JDBC type for storing plural i.e.static final String
MappingSettings.PREFERRED_BOOLEAN_JDBC_TYPE
Specifies the preferred JDBC type for storing boolean values.static final String
MappingSettings.PREFERRED_DURATION_JDBC_TYPE
The preferred JDBC type to use for storingDuration
values.static final String
MappingSettings.PREFERRED_INSTANT_JDBC_TYPE
Specifies the preferred JDBC type for storingInstant
values.static final String
MappingSettings.PREFERRED_UUID_JDBC_TYPE
The preferred JDBC type to use for storingUUID
values.static final String
CacheSettings.QUERY_CACHE_LAYOUT
Specifies the defaultCacheLayout
to use for the query cache.static final String
MappingSettings.WRAPPER_ARRAY_HANDLING
Configurable control over how to handleByte[]
andCharacter[]
types encountered in the application domain model.static final String
MappingSettings.XML_FORMAT_MAPPER
Specifies aFormatMapper
used for XML serialization and deserialization, either: an instance ofFormatMapper
, aClass
representing a class that implementsFormatMapper
, the name of a class that implementsFormatMapper
, or one of the shorthand constantsjackson
orjaxb
.static final String
MappingSettings.XML_FORMAT_MAPPER_LEGACY_FORMAT
Specifies whether to use the legacy provider specific and non-portable XML format for collections and byte arrays for XML serialization/deserialization.static final String
QuerySettings.XML_FUNCTIONS_ENABLED
Boolean setting to control if the use of tech preview XML functions in HQL is enabled.Methods in org.hibernate.cfg with annotations of type IncubatingModifier and TypeMethodDescriptionConfiguration.getColumnOrderingStrategy()
TheCustomEntityDirtinessStrategy
, if any, that was added to this configuration.Configuration.setColumnOrderingStrategy
(ColumnOrderingStrategy columnOrderingStrategy) Specify aCustomEntityDirtinessStrategy
to be added to this configuration. -
Uses of Incubating in org.hibernate.collection.spi
Classes in org.hibernate.collection.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Functional contract to create aCollectionInitializer
.interface
CollectionSemantics<CE,
E> Each instance of this interface describes the semantics of some sort of persistent collection so that Hibernate understands how to manage the lifecycle of instances of that sort of collection.interface
Resolve the collection semantics for the given mapped collection.class
interface
The most general abstraction over collections which may be fetched lazily.class
A dummy collection wrapper for an array.class
An unordered, un-keyed collection that can contain the same element multiple times.interface
Persistent collections are treated as value objects by Hibernate.class
An "identifier bag" implements "bag" semantics more efficiently than a regular bag by adding a synthetic identifier column to the table.class
A persistent wrapper for aList
.class
PersistentMap<K,
E> A persistent wrapper for aMap
.class
A persistent wrapper for aSet
.class
PersistentSortedMap<K,
E> A persistent wrapper for aSortedMap
.class
A persistent wrapper for aSortedSet
. -
Uses of Incubating in org.hibernate.dialect
Classes in org.hibernate.dialect with annotations of type IncubatingModifier and TypeClassDescriptionclass
A wrapper of Dialect, to allow decorating some selected methods without having to extend the original class.enum
Describes the extent to which a given database supports the SQLwith time zone
types.Methods in org.hibernate.dialect with annotations of type IncubatingModifier and TypeMethodDescriptionDialect.getFallbackSchemaManagementTool
(Map<String, Object> configurationValues, ServiceRegistryImplementor registry) TheSchemaManagementTool
to use if none is explicitly specified.DialectDelegateWrapper.getFallbackSchemaManagementTool
(Map<String, Object> configurationValues, ServiceRegistryImplementor registry) Dialect.getNativeValueGenerationStrategy()
The native type of generation supported by this Dialect. -
Uses of Incubating in org.hibernate.dialect.aggregate
Classes in org.hibernate.dialect.aggregate with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
A set of operations providing support for aggregate column types in a certain SQL dialect. -
Uses of Incubating in org.hibernate.engine.jdbc.batch.spi
Classes in org.hibernate.engine.jdbc.batch.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Represents a batch of statements to be executed together.interface
A builder forBatch
instances. -
Uses of Incubating in org.hibernate.engine.jdbc.mutation
Classes in org.hibernate.engine.jdbc.mutation with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
The JDBC values for a mutationinterface
Main contract for performing the mutation.interface
Used to check the results of a statement execution -
Uses of Incubating in org.hibernate.engine.jdbc.mutation.group
Classes in org.hibernate.engine.jdbc.mutation.group with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Descriptor for details about aPreparedStatement
interface
Grouping ofPreparedStatement
references. -
Uses of Incubating in org.hibernate.engine.jdbc.spi
Methods in org.hibernate.engine.jdbc.spi with annotations of type IncubatingModifier and TypeMethodDescriptionJdbcServices.getParameterMarkerStrategy()
Obtains the service used for marking SQL parameters -
Uses of Incubating in org.hibernate.engine.query.spi
Classes in org.hibernate.engine.query.spi with annotations of type IncubatingModifier and TypeClassDescriptionclass
class
Descriptor regarding a named parameter.interface
Service contract for dealing with native queries.class
Descriptor regarding an ordinal parameter. -
Uses of Incubating in org.hibernate.engine.spi
Classes in org.hibernate.engine.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Holder for an entry in thePersistenceContext
for anEntityKey
.interface
The base contract for interceptors that can be injected into enhanced entities for the purpose of intercepting attribute accessMethods in org.hibernate.engine.spi with annotations of type IncubatingModifier and TypeMethodDescriptionPersistenceContext.addEntityHolder
(EntityKey key, Object entity) PersistenceContext.claimEntityHolderIfPossible
(EntityKey key, @Nullable Object entity, JdbcValuesSourceProcessingState processingState, EntityInitializer<?> initializer) Return an existing entity holder for the entity key, possibly creating one if necessary.void
PersistenceContext.postLoad
(JdbcValuesSourceProcessingState processingState, Consumer<EntityHolder> loadedConsumer) Constructors in org.hibernate.engine.spi with annotations of type Incubating -
Uses of Incubating in org.hibernate.envers
Classes in org.hibernate.envers with annotations of type IncubatingModifier and TypeClassDescription@interface
Allows for the customization of an Envers audit collection table. -
Uses of Incubating in org.hibernate.envers.boot.spi
Classes in org.hibernate.envers.boot.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Defines a naming strategy for applying modified columns to the audited entity metamodel. -
Uses of Incubating in org.hibernate.envers.query
Classes in org.hibernate.envers.query with annotations of type IncubatingMethods in org.hibernate.envers.query with annotations of type IncubatingModifier and TypeMethodDescriptionAuditQueryCreator.forRevisionsOfEntity
(Class<?> clazz, boolean selectDeletedEntities) Creates a query that selects the revision entities associated with the specified entity.AuditQueryCreator.forRevisionsOfEntity
(Class<?> clazz, String entityName, boolean selectDeletedEntities) Creates a query that selects the revision entities associated with the specified entity.AuditQueryCreator.forRevisionsOfEntityWithChanges
(Class<?> clazz, boolean selectDeletedEntities) Creates a query that selects the revisions at which the given entity was modified.AuditQueryCreator.forRevisionsOfEntityWithChanges
(Class<?> clazz, String entityName, boolean selectDeletedEntities) Creates a query that selects the revisions at which the given entity was modified.AuditAssociationQuery<? extends AuditQuery>
AuditQuery.traverseRelation
(String associationName, JoinType joinType, String alias, AuditCriterion onClauseCriterion) -
Uses of Incubating in org.hibernate.envers.query.internal.impl
Classes in org.hibernate.envers.query.internal.impl with annotations of type IncubatingModifier and TypeClassDescriptionclass
AbstractAuditAssociationQuery<Q extends org.hibernate.envers.query.internal.impl.AuditQueryImplementor>
An abstract base class for allAuditAssociationQuery
implementations.class
EntitiesAtRevisionAssociationQuery<Q extends org.hibernate.envers.query.internal.impl.AuditQueryImplementor>
AnAuditAssociationQuery
implementation forEntitiesAtRevisionQuery
andEntitiesModifiedAtRevisionQuery
query types.class
RevisionsOfEntityAssociationQuery<Q extends org.hibernate.envers.query.internal.impl.AuditQueryImplementor>
AnAuditAssociationQuery
implementation forRevisionsOfEntityQuery
. -
Uses of Incubating in org.hibernate.envers.strategy.spi
Classes in org.hibernate.envers.strategy.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
A strategy abstraction for how to audit entity changes.interface
A contract to initialize anAuditStrategy
class
Describes an audit mapping context. -
Uses of Incubating in org.hibernate.event.service.spi
Classes in org.hibernate.event.service.spi with annotations of type IncubatingMethods in org.hibernate.event.service.spi with annotations of type IncubatingModifier and TypeMethodDescription<U> void
EventListenerGroup.fireEventOnEachListener
(U event, BiConsumer<T, U> actionOnEvent) Similar asEventListenerGroup.fireLazyEventOnEachListener(Supplier, BiConsumer)
except it doesn't use a {Supplier
}.<R,
U, RL> CompletionStage<R> EventListenerGroup.fireEventOnEachListener
(U event, Function<RL, Function<U, CompletionStage<R>>> fun) Similar toEventListenerGroup.fireEventOnEachListener(Object, BiConsumer)
, but Reactive friendly: it chains processing of the same event on each Reactive Listener, and returns aCompletionStage
of type R.<R,
U, RL, X> CompletionStage<R> EventListenerGroup.fireEventOnEachListener
(U event, X param, Function<RL, BiFunction<U, X, CompletionStage<R>>> fun) Similar toEventListenerGroup.fireEventOnEachListener(Object, Object, EventActionWithParameter)
, but Reactive friendly: it chains processing of the same event on each Reactive Listener, and returns aCompletionStage
of type R.<U,
X> void EventListenerGroup.fireEventOnEachListener
(U event, X param, EventActionWithParameter<T, U, X> actionOnEvent) Similar toEventListenerGroup.fireEventOnEachListener(Object, BiConsumer)
, but allows passing a third parameter to the consumer; our code based occasionally needs a third parameter: having this additional variant allows using the optimal iteration more extensively and reduce allocations.<U> void
EventListenerGroup.fireLazyEventOnEachListener
(Supplier<U> eventSupplier, BiConsumer<T, U> actionOnEvent) Fires an event on each registered event listener of this group.<R,
U, RL> CompletionStage<R> EventListenerGroup.fireLazyEventOnEachListener
(Supplier<U> eventSupplier, Function<RL, Function<U, CompletionStage<R>>> fun) Similar toEventListenerGroup.fireLazyEventOnEachListener(Supplier, BiConsumer)
, but Reactive friendly: it chains processing of the same event on each Reactive Listener, and returns aCompletionStage
of type R. -
Uses of Incubating in org.hibernate.event.spi
Classes in org.hibernate.event.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Defines a contract for reporting and monitoring low-level events involving interactions between the session and the database or second-level cache.interface
-
Uses of Incubating in org.hibernate.generator
Classes in org.hibernate.generator with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Access to information useful during Generator creation and initialization.Methods in org.hibernate.generator with annotations of type IncubatingModifier and TypeMethodDescriptionOnExecutionGenerator.getGeneratedIdentifierDelegate
(EntityPersister persister) TheInsertGeneratedIdentifierDelegate
used to retrieve the generated value if this object is an identifier generator.default String[]
OnExecutionGenerator.getUniqueKeyPropertyNames
(EntityPersister persister) The name of a property of the entity which may be used to locate the just-insert
ed row containing the generated value. -
Uses of Incubating in org.hibernate.id.enhanced
Classes in org.hibernate.id.enhanced with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
A naming strategy specifically for determining the implicit naming of tables and sequences relating to enhanced identifier-generators. -
Uses of Incubating in org.hibernate.internal.util.collections
Methods in org.hibernate.internal.util.collections with annotations of type IncubatingModifier and TypeMethodDescription<X,
Y> X Stack.findCurrentFirstWithParameter
(Y parameter, BiFunction<T, Y, X> biFunction) Runs a function on each couple defined as {Y,T} in which Y is fixed, and T is each instance of this stack. -
Uses of Incubating in org.hibernate.internal.util.config
Methods in org.hibernate.internal.util.config with annotations of type IncubatingModifier and TypeMethodDescriptionstatic int
ConfigurationHelper.getPreferredSqlTypeCodeForArray
(StandardServiceRegistry serviceRegistry) static int
ConfigurationHelper.getPreferredSqlTypeCodeForBoolean
(StandardServiceRegistry serviceRegistry) static int
ConfigurationHelper.getPreferredSqlTypeCodeForBoolean
(ServiceRegistry serviceRegistry, Dialect dialect) static int
ConfigurationHelper.getPreferredSqlTypeCodeForDuration
(StandardServiceRegistry serviceRegistry) static int
ConfigurationHelper.getPreferredSqlTypeCodeForInstant
(StandardServiceRegistry serviceRegistry) static int
ConfigurationHelper.getPreferredSqlTypeCodeForUuid
(StandardServiceRegistry serviceRegistry) -
Uses of Incubating in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal with annotations of type IncubatingModifier and TypeMethodDescriptionCacheEntityLoaderHelper.loadFromSessionCache
(EntityKey keyToLoad, LoadEventListener.LoadType options, LockOptions lockOptions, EventSource session) -
Uses of Incubating in org.hibernate.loader.internal
Classes in org.hibernate.loader.internal with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Context for loader-access objects. -
Uses of Incubating in org.hibernate.mapping
Classes in org.hibernate.mapping with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Exposes the default catalog and schema to the generator creation process.class
A mapping model object representing a named relational database array type.class
A mapping model object representing a relational database UDT.interface
A mapping model object which represents a user defined type.Methods in org.hibernate.mapping with annotations of type IncubatingModifier and TypeMethodDescriptionKeyValue.createGenerator
(Dialect dialect, RootClass rootClass, Property property, GeneratorSettings defaults) default MetadataBuildingContext
Value.getBuildingContext()
default String
Value.getExtraCreateTableInfo()
default JdbcMapping
Value.getSelectableType
(MappingContext mappingContext, int index) default String
Selectable.getWriteExpr()
default String
Selectable.getWriteExpr
(JdbcMapping jdbcMapping, Dialect dialect) BasicValue.impliedJavaType
(TypeConfiguration typeConfiguration) void
BasicValue.setExplicitJdbcTypeCode
(Integer jdbcTypeCode) void
Any.setImplicitDiscriminatorValueStrategy
(ImplicitDiscriminatorStrategy implicitValueStrategy) Set the strategy for dealing with discriminator mappings which are not explicitly defined by AnyDiscriminatorValue. -
Uses of Incubating in org.hibernate.metamodel
Classes in org.hibernate.metamodel with annotations of type IncubatingModifier and TypeClassDescriptionenum
An extended set ofAttribute.PersistentAttributeType
addingAttributeClassification.ANY
enum
Classifications of the plurality.interface
Access to information about the runtime relational O/R mapping model.interface
Entry point providing access to the runtime metamodels: the domain model, our implementation of the JPA-defined model of the Java types, and our relational mapping model of how these types are made persistent. -
Uses of Incubating in org.hibernate.metamodel.mapping
Classes in org.hibernate.metamodel.mapping with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
This is essentially a List of AttributeMapping(s), but exposing an interface which is more suitable to our needs; in particular it expresses the immutable nature of this structure, and allows us to extend it with additional convenience methods such asAttributeMappingsList.indexedForEach(IndexedConsumer)
.interface
Similar toAttributeMappingsList
, this is essentially an immutable Map of AttributeMapping(s), allowing iteration of all mappings but also retrieval by name (a String key).interface
Contract for things at the domain mapping level that can be bound into a JDBCPreparedStatement
.interface
Mapping for an entity's natural-id, if one is defined.interface
Mapping of a selectable (column/formula)class
The path for a selectable.Methods in org.hibernate.metamodel.mapping with annotations of type IncubatingModifier and TypeMethodDescriptiondefault JavaType<?>
JdbcMapping.getJdbcJavaType()
default JdbcLiteralFormatter
JdbcMapping.getJdbcLiteralFormatter()
The strategy for formatting values of this expressible type to a SQL literal.default BasicValueConverter
JdbcMapping.getValueConverter()
Returns the converter that this basic type uses for transforming from the domain type, to the relational type, ornull
if there is no conversion.default boolean
EntityMappingType.isConcreteProxy()
Returnstrue
if this entity type's hierarchy is configured to return concrete-typed proxies.default EntityMappingType
EntityMappingType.resolveConcreteProxyTypeForId
(Object id, SharedSessionContractImplementor session) If this entity is configured to return concrete-typed proxies, this method queries the entity table(s) do determine the concrete entity type associated with the provided id and returns its persister. -
Uses of Incubating in org.hibernate.metamodel.mapping.internal
Classes in org.hibernate.metamodel.mapping.internal with annotations of type IncubatingModifier and TypeClassDescriptionclass
Responsible for retrieving database-generated attribute values after aninsert
orupdate
statement is executed. -
Uses of Incubating in org.hibernate.metamodel.model.domain
Classes in org.hibernate.metamodel.model.domain with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Extensions to the JPA-defined metamodel of persistent Java types. -
Uses of Incubating in org.hibernate.metamodel.spi
Classes in org.hibernate.metamodel.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Contract for instantiating embeddable values.interface
Describes the representation of a particular embeddable type.interface
Strategy for instantiating a managed typeinterface
Pluggable strategy handling resolution of ManagedTypeRepresentationStrategy to use.interface
Defines a singular extension point for capabilities pertaining to a representation mode.interface
Provides access to the values for a managed type (currently just embeddables). -
Uses of Incubating in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection with annotations of type Incubating -
Uses of Incubating in org.hibernate.persister.entity
Classes in org.hibernate.persister.entity with annotations of type IncubatingModifier and TypeClassDescriptionfinal class
Describes the kind of entity name use.Methods in org.hibernate.persister.entity with annotations of type IncubatingModifier and TypeMethodDescriptionboolean
EntityPersister.storeDiscriminatorInShallowQueryCacheLayout()
EntityPersister.uniqueKeyEntries()
boolean
EntityPersister.useShallowQueryCacheLayout()
-
Uses of Incubating in org.hibernate.persister.entity.mutation
Classes in org.hibernate.persister.entity.mutation with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Results of analyzing an attribute in terms of handling update operationsinterface
Anything that can be the target of mutationsinterface
Contains an aggregated analysis of the values for an update mutation to determine behavior such as skipping tables which contained no changes, etc. -
Uses of Incubating in org.hibernate.procedure.spi
Classes in org.hibernate.procedure.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Represents a "memento" (disconnected, externalizable form) of a ProcedureCallinterface
SPI extension for ProcedureParameter -
Uses of Incubating in org.hibernate.query
Classes in org.hibernate.query with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
BindableType<J>
Types that can be used to handle bindingQuery
parametersinterface
A context within which aBindableType
can be resolved to an instance ofSqmExpressible
.class
KeyedPage<R>
Support for pagination based on a unique key of the result set instead of theoffset
.class
Support for pagination based on a unique key of the result set instead of theoffset
.interface
Within the context of an active session, an instance of this type represents an executable mutation query, that is, aninsert
,update
, ordelete
.class
Order<X>
A rule for sorting a query result set.interface
Specialization ofDomainType
for types that can be used as a parameter output for aProcedureCall
.class
Identifies a page of query results by page size and page number.interface
Access to known information about the parameters for a query.interface
Query<R>
Within the context of an active session, an instance of this type represents an executable query, either: a query written in HQL, a named query written in HQL or native SQL, or a criteria query.interface
Represents a parameter defined in the source (HQL/JPQL or criteria) query.interface
interface
Specialization of DomainType for types that can be used as function returnsinterface
Within the context of an active session, an instance of this type represents an executable selection query, that is, aselect
.interface
Methods in org.hibernate.query with annotations of type IncubatingModifier and TypeMethodDescriptionSelectionQuery.getKeyedResultList
(KeyedPage<R> page) Execute the query and return the results for the given page, using key-based pagination.long
SelectionQuery.getResultCount()
Determine the size of the query result list that would be returned by callingSelectionQuery.getResultList()
with no offset or limit applied to the query.If the result type of this query is an entity class, add one or more rules for ordering the query results.If the result type of this query is an entity class, add a rule for ordering the query results.Set the page of results to return. -
Uses of Incubating in org.hibernate.query.criteria
Classes in org.hibernate.query.criteria with annotations of type IncubatingModifier and TypeClassDescriptionclass
A utility class that makes it easier to build criteria queries.interface
A JPACriteriaBuilder
is a source of objects which may be composed to express a criteria query.interface
The target for cast.interface
A conflict clause for insert statements.interface
The update action that should happen on a unique constraint violation for an insert statement.interface
The commonalities between insert-select and insert-values.interface
A representation of SqmInsertSelectStatement at theorg.hibernate.query.criteria
level, even though JPA does not define support for insert-select criteria.interface
A representation of SqmInsertValuesStatement at theorg.hibernate.query.criteria
level, even though JPA does not define support for insert-values criteria.interface
JpaCrossJoin<T>
interface
Common contract for criteria parts that can hold CTEs (common table expressions).interface
A CTE (common table expression) criteria.interface
Describes the attribute of aJpaCteCriteriaType
.interface
A CTE (common table expression) criteria type.interface
interface
interface
interface
JpaFunctionFrom<O,
T> interface
interface
interface
A special expression for thejson_exists
function.interface
The base forjson_exists
function nodes.interface
A special expression for thejson_query
function.interface
The base forjson_query
function nodes.interface
A special expression for the definition of columns within thejson_table
function.interface
A special expression for thejson_table
function.interface
A special expression for thejson_value
function.interface
The base forjson_value
function nodes.interface
Represents the search order for a recursive CTE (common table expression).interface
A set returning function criteria.interface
A tuple of values.interface
Common contract for window parts used in window and aggregate functions.interface
Common contract for aJpaWindow
frame specification.interface
A special expression for thexmlelement
function.interface
A special node for column defined for axmltable
function.interface
A special expression for thexmltable
function.Methods in org.hibernate.query.criteria with annotations of type IncubatingModifier and TypeMethodDescriptionHibernateCriteriaBuilder.acos
(Expression<? extends Number> x) Create an expression that returns the inverse cosine of its argument.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayAgg
(JpaOrder order, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayAgg
(JpaOrder order, JpaPredicate filter, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayAgg
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<? extends T> argument) Create aarray_agg
ordered set-aggregate function expression.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayAgg
(JpaOrder order, JpaWindow window, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayAppend
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Appends element to array.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayAppend
(Expression<T[]> arrayExpression, T element) Appends element to array.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayConcat
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Concatenates arrays with each other in order.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayConcat
(Expression<T[]> arrayExpression1, T[] array2) Concatenates arrays with each other in order.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayConcat
(T[] array1, Expression<T[]> arrayExpression2) Concatenates arrays with each other in order.<T> JpaPredicate
HibernateCriteriaBuilder.arrayContains
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Whether an array contains an element.<T> JpaPredicate
HibernateCriteriaBuilder.arrayContains
(Expression<T[]> arrayExpression, T element) Whether an array contains an element.<T> JpaPredicate
HibernateCriteriaBuilder.arrayContains
(T[] array, Expression<T> elementExpression) Whether an array contains an element.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsAll
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsAll
(Expression<T[]> arrayExpression, T[] subArray) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsAll
(T[] array, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsAllNullable
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsAllNullable
(Expression<T[]> arrayExpression, T[] subArray) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsAllNullable
(T[] array, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsNullable
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Whether an array contains a nullable element.<T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsNullable
(Expression<T[]> arrayExpression, T element) Whether an array contains a nullable element.<T> JpaPredicate
HibernateCriteriaBuilder.arrayContainsNullable
(T[] array, Expression<T> elementExpression) Whether an array contains a nullable element.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayFill
(Expression<T> elementExpression, Expression<Integer> elementCountExpression) Creates array with the same element N times, as specified by the arguments.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayFill
(Expression<T> elementExpression, Integer elementCount) Creates array with the same element N times, as specified by the arguments.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayFill
(T element, Expression<Integer> elementCountExpression) Creates array with the same element N times, as specified by the arguments.<T> JpaExpression<T[]>
Creates array with the same element N times, as specified by the arguments.<T> JpaExpression<T>
HibernateCriteriaBuilder.arrayGet
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression) Accesses the element of an array by 1-based index.<T> JpaExpression<T>
HibernateCriteriaBuilder.arrayGet
(Expression<T[]> arrayExpression, Integer index) Accesses the element of an array by 1-based index.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIncludes
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) Whether an array is a subset of another array.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIncludes
(Expression<T[]> arrayExpression, T[] subArray) Whether an array is a subset of another array.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIncludes
(T[] array, Expression<T[]> subArrayExpression) Whether an array is a subset of another array.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIncludesNullable
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) Whether an array is a subset of another array with nullable elements.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIncludesNullable
(Expression<T[]> arrayExpression, T[] subArray) Whether an array is a subset of another array with nullable elements.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIncludesNullable
(T[] array, Expression<T[]> subArrayExpression) Whether an array is a subset of another array with nullable elements.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIntersects
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Whether one array has any elements common with another array.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIntersects
(Expression<T[]> arrayExpression1, T[] array2) Whether one array has any elements common with another array.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIntersects
(T[] array1, Expression<T[]> arrayExpression2) Whether one array has any elements common with another array.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIntersectsNullable
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Whether one array has any elements common with another array, supportingnull
elements.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIntersectsNullable
(Expression<T[]> arrayExpression1, T[] array2) Whether one array has any elements common with another array, supportingnull
elements.<T> JpaPredicate
HibernateCriteriaBuilder.arrayIntersectsNullable
(T[] array1, Expression<T[]> arrayExpression2) Whether one array has any elements common with another array, supportingnull
elements.<T> JpaExpression<Integer>
HibernateCriteriaBuilder.arrayLength
(Expression<T[]> arrayExpression) Determines the length of an array.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayLiteral
(T... elements) Creates an array literal with thearray
constructor function.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayOverlaps
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayOverlaps
(Expression<T[]> arrayExpression1, T[] array2) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayOverlaps
(T[] array1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayOverlapsNullable
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayOverlapsNullable
(Expression<T[]> arrayExpression1, T[] array2) Deprecated, for removal: This API element is subject to removal in a future version.default <T> JpaPredicate
HibernateCriteriaBuilder.arrayOverlapsNullable
(T[] array1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaExpression<Integer>
HibernateCriteriaBuilder.arrayPosition
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Determines the 1-based position of an element in an array.<T> JpaExpression<Integer>
HibernateCriteriaBuilder.arrayPosition
(Expression<T[]> arrayExpression, T element) Determines the 1-based position of an element in an array.<T> JpaExpression<int[]>
HibernateCriteriaBuilder.arrayPositions
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Determines all 1-based positions of an element in an array.<T> JpaExpression<int[]>
HibernateCriteriaBuilder.arrayPositions
(Expression<T[]> arrayExpression, T element) Determines all 1-based positions of an element in an array.<T> JpaExpression<List<Integer>>
HibernateCriteriaBuilder.arrayPositionsList
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Determines all 1-based positions of an element in an array.<T> JpaExpression<List<Integer>>
HibernateCriteriaBuilder.arrayPositionsList
(Expression<T[]> arrayExpression, T element) Determines all 1-based positions of an element in an array.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayPrepend
(Expression<T> elementExpression, Expression<T[]> arrayExpression) Prepends element to array.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayPrepend
(T element, Expression<T[]> arrayExpression) Prepends element to array.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayRemove
(Expression<T[]> arrayExpression, Expression<T> elementExpression) Creates array copy with given element removed.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayRemove
(Expression<T[]> arrayExpression, T element) Creates array copy with given element removed.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayRemoveIndex
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression) Creates array copy with the element at the given 1-based index removed.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayRemoveIndex
(Expression<T[]> arrayExpression, Integer index) Creates array copy with the element at the given 1-based index removed.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayReplace
(Expression<T[]> arrayExpression, Expression<T> oldElementExpression, Expression<T> newElementExpression) Creates array copy replacing a given element with another.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayReplace
(Expression<T[]> arrayExpression, Expression<T> oldElementExpression, T newElement) Creates array copy replacing a given element with another.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayReplace
(Expression<T[]> arrayExpression, T oldElement, Expression<T> newElementExpression) Creates array copy replacing a given element with another.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayReplace
(Expression<T[]> arrayExpression, T oldElement, T newElement) Creates array copy replacing a given element with another.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySet
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression, Expression<T> elementExpression) Creates array copy with given element at given 1-based index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySet
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression, T element) Creates array copy with given element at given 1-based index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySet
(Expression<T[]> arrayExpression, Integer index, Expression<T> elementExpression) Creates array copy with given element at given 1-based index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySet
(Expression<T[]> arrayExpression, Integer index, T element) Creates array copy with given element at given 1-based index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySlice
(Expression<T[]> arrayExpression, Expression<Integer> lowerIndexExpression, Expression<Integer> upperIndexExpression) Creates a sub-array of the based on 1-based lower and upper index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySlice
(Expression<T[]> arrayExpression, Expression<Integer> lowerIndexExpression, Integer upperIndex) Creates a sub-array of the based on 1-based lower and upper index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySlice
(Expression<T[]> arrayExpression, Integer lowerIndex, Expression<Integer> upperIndexExpression) Creates a sub-array of the based on 1-based lower and upper index.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arraySlice
(Expression<T[]> arrayExpression, Integer lowerIndex, Integer upperIndex) Creates a sub-array of the based on 1-based lower and upper index.HibernateCriteriaBuilder.arrayToString
(Expression<? extends Object[]> arrayExpression, Expression<String> separatorExpression) Concatenates the non-null array elements with a separator, as specified by the arguments.HibernateCriteriaBuilder.arrayToString
(Expression<? extends Object[]> arrayExpression, String separator) Concatenates the non-null array elements with a separator, as specified by the arguments.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayTrim
(Expression<T[]> arrayExpression, Expression<Integer> elementCountExpression) Creates array copy without the last N elements, specified by the second argument.<T> JpaExpression<T[]>
HibernateCriteriaBuilder.arrayTrim
(Expression<T[]> arrayExpression, Integer elementCount) Creates array copy without the last N elements, specified by the second argument.HibernateCriteriaBuilder.asc
(JpaCteCriteriaAttribute x) Create a search ordering by the ascending value of the CTE attribute.HibernateCriteriaBuilder.asc
(JpaCteCriteriaAttribute x, boolean nullsFirst) Create a search ordering by the ascending value of the CTE attribute.HibernateCriteriaBuilder.asin
(Expression<? extends Number> x) Create an expression that returns the inverse sine of its argument.HibernateCriteriaBuilder.atan
(Expression<? extends Number> x) Create an expression that returns the inverse tangent of its argument.HibernateCriteriaBuilder.atan2
(Expression<? extends Number> y, Expression<? extends Number> x) Create an expression that returns the inverse tangent ofy
overx
.HibernateCriteriaBuilder.atan2
(Expression<? extends Number> y, Number x) HibernateCriteriaBuilder.atan2
(Number y, Expression<? extends Number> x) <N extends Number>
JpaExpression<Double>HibernateCriteriaBuilder.avg
(Expression<N> argument, JpaPredicate filter) <N extends Number>
JpaExpression<Double>HibernateCriteriaBuilder.avg
(Expression<N> argument, JpaPredicate filter, JpaWindow window) Create anavg
aggregate function expression.<N extends Number>
JpaExpression<Double>HibernateCriteriaBuilder.avg
(Expression<N> argument, JpaWindow window) HibernateCriteriaBuilder.collate
(Expression<String> x, String collation) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionAppend
(Expression<C> collectionExpression, E element) Appends element to basic collection.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionAppend
(Expression<C> collectionExpression, Expression<? extends E> elementExpression) Appends element to basic collection.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionConcat
(C collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Concatenates basic collections with each other in order.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionConcat
(Expression<C> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Concatenates basic collections with each other in order.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionConcat
(Expression<C> collectionExpression1, Collection<? extends E> collection2) Concatenates basic collections with each other in order.<E> JpaPredicate
HibernateCriteriaBuilder.collectionContains
(Expression<? extends Collection<E>> collectionExpression, E element) Whether a basic collection contains an element.<E> JpaPredicate
HibernateCriteriaBuilder.collectionContains
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends E> elementExpression) Whether a basic collection contains an element.<E> JpaPredicate
HibernateCriteriaBuilder.collectionContains
(Collection<E> collection, Expression<E> elementExpression) Whether a basic collection contains an element.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsAll
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsAll
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsAll
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsAllNullable
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsAllNullable
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsAllNullable
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsNullable
(Expression<? extends Collection<E>> collectionExpression, E element) Whether a basic collection contains a nullable element.<E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsNullable
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends E> elementExpression) Whether a basic collection contains a nullable element.<E> JpaPredicate
HibernateCriteriaBuilder.collectionContainsNullable
(Collection<E> collection, Expression<E> elementExpression) Whether a basic collection contains a nullable element.<T> JpaExpression<Collection<T>>
HibernateCriteriaBuilder.collectionFill
(Expression<T> elementExpression, Expression<Integer> elementCountExpression) Creates basic collection with the same element N times, as specified by the arguments.<T> JpaExpression<Collection<T>>
HibernateCriteriaBuilder.collectionFill
(Expression<T> elementExpression, Integer elementCount) Creates basic collection with the same element N times, as specified by the arguments.<T> JpaExpression<Collection<T>>
HibernateCriteriaBuilder.collectionFill
(T element, Expression<Integer> elementCountExpression) Creates basic collection with the same element N times, as specified by the arguments.<T> JpaExpression<Collection<T>>
HibernateCriteriaBuilder.collectionFill
(T element, Integer elementCount) Creates basic collection with the same element N times, as specified by the arguments.<E> JpaExpression<E>
HibernateCriteriaBuilder.collectionGet
(Expression<? extends Collection<E>> collectionExpression, Expression<Integer> indexExpression) Accesses the element of the basic collection by 1-based index.<E> JpaExpression<E>
HibernateCriteriaBuilder.collectionGet
(Expression<? extends Collection<E>> collectionExpression, Integer index) Accesses the element of the basic collection by 1-based index.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIncludes
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) Whether a basic collection is a subset of another basic collection.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIncludes
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) Whether a basic collection is a subset of another basic collection.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIncludes
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) Whether a basic collection is a subset of another basic collection.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIncludesNullable
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) Whether a basic collection is a subset of another basic collection with nullable elements.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIncludesNullable
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) Whether a basic collection is a subset of another basic collection with nullable elements.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIncludesNullable
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) Whether a basic collection is a subset of another basic collection with nullable elements.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIntersects
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Whether one basic collection has any elements common with another basic collection.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIntersects
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) Whether one basic collection has any elements common with another basic collection.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIntersects
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Whether one basic collection has any elements common with another basic collection.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIntersectsNullable
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Whether one basic collection has any elements common with another basic collection, supportingnull
elements.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIntersectsNullable
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) Whether one basic collection has any elements common with another basic collection, supportingnull
elements.<E> JpaPredicate
HibernateCriteriaBuilder.collectionIntersectsNullable
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Whether one basic collection has any elements common with another basic collection, supportingnull
elements.HibernateCriteriaBuilder.collectionLength
(Expression<? extends Collection<?>> collectionExpression) Determines the length of a basic collection.<E,
C extends Collection<E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionLiteral
(E... elements) Creates a basic collection literal with thearray
constructor function.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionOverlaps
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionOverlaps
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionOverlaps
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionOverlapsNullable
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionOverlapsNullable
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) Deprecated, for removal: This API element is subject to removal in a future version.default <E> JpaPredicate
HibernateCriteriaBuilder.collectionOverlapsNullable
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaExpression<Integer>
HibernateCriteriaBuilder.collectionPosition
(Expression<? extends Collection<? extends E>> collectionExpression, E element) Determines the 1-based position of an element in a basic collection.<E> JpaExpression<Integer>
HibernateCriteriaBuilder.collectionPosition
(Expression<? extends Collection<? extends E>> collectionExpression, Expression<E> elementExpression) Determines the 1-based position of an element in a basic collection.<T> JpaExpression<int[]>
HibernateCriteriaBuilder.collectionPositions
(Expression<? extends Collection<? super T>> collectionExpression, Expression<T> elementExpression) Determines all 1-based positions of an element in a basic collection.<T> JpaExpression<int[]>
HibernateCriteriaBuilder.collectionPositions
(Expression<? extends Collection<? super T>> collectionExpression, T element) Determines all 1-based positions of an element in a basic collection.<T> JpaExpression<List<Integer>>
HibernateCriteriaBuilder.collectionPositionsList
(Expression<? extends Collection<? super T>> collectionExpression, Expression<T> elementExpression) Determines all 1-based positions of an element in a basic collection.<T> JpaExpression<List<Integer>>
HibernateCriteriaBuilder.collectionPositionsList
(Expression<? extends Collection<? super T>> collectionExpression, T element) Determines all 1-based positions of an element in a basic collection.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionPrepend
(E element, Expression<C> collectionExpression) Prepends element to basic collection.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionPrepend
(Expression<? extends E> elementExpression, Expression<C> collectionExpression) Prepends element to basic collection.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionRemove
(Expression<C> collectionExpression, E element) Creates basic collection copy with given element removed.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionRemove
(Expression<C> collectionExpression, Expression<? extends E> elementExpression) Creates basic collection copy with given element removed.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionRemoveIndex
(Expression<C> collectionExpression, Expression<Integer> indexExpression) Creates basic collection copy with the element at the given 1-based index removed.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionRemoveIndex
(Expression<C> collectionExpression, Integer index) Creates basic collection copy with the element at the given 1-based index removed.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionReplace
(Expression<C> collectionExpression, E oldElement, E newElement) Creates basic collection copy replacing a given element with another.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionReplace
(Expression<C> collectionExpression, E oldElement, Expression<? extends E> newElementExpression) Creates basic collection copy replacing a given element with another.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionReplace
(Expression<C> collectionExpression, Expression<? extends E> oldElementExpression, E newElement) Creates basic collection copy replacing a given element with another.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionReplace
(Expression<C> collectionExpression, Expression<? extends E> oldElementExpression, Expression<? extends E> newElementExpression) Creates basic collection copy replacing a given element with another.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSet
(Expression<C> collectionExpression, Expression<Integer> indexExpression, E element) Creates basic collection copy with given element at given 1-based index.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSet
(Expression<C> collectionExpression, Expression<Integer> indexExpression, Expression<? extends E> elementExpression) Creates basic collection copy with given element at given 1-based index.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSet
(Expression<C> collectionExpression, Integer index, E element) Creates basic collection copy with given element at given 1-based index.<E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSet
(Expression<C> collectionExpression, Integer index, Expression<? extends E> elementExpression) Creates basic collection copy with given element at given 1-based index.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSlice
(Expression<C> collectionExpression, Expression<Integer> lowerIndexExpression, Expression<Integer> upperIndexExpression) Creates a sub-collection of the based on 1-based lower and upper index.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSlice
(Expression<C> collectionExpression, Expression<Integer> lowerIndexExpression, Integer upperIndex) Creates a sub-collection of the based on 1-based lower and upper index.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSlice
(Expression<C> collectionExpression, Integer lowerIndex, Expression<Integer> upperIndexExpression) Creates a sub-collection of the based on 1-based lower and upper index.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionSlice
(Expression<C> collectionExpression, Integer lowerIndex, Integer upperIndex) Creates a sub-collection of the based on 1-based lower and upper index.HibernateCriteriaBuilder.collectionToString
(Expression<? extends Collection<?>> collectionExpression, Expression<String> separatorExpression) Concatenates the non-null basic collection elements with a separator, as specified by the arguments.HibernateCriteriaBuilder.collectionToString
(Expression<? extends Collection<?>> collectionExpression, String separator) Concatenates the non-null basic collection elements with a separator, as specified by the arguments.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionTrim
(Expression<C> arrayExpression, Expression<Integer> elementCountExpression) Creates basic collection copy without the last N elements, specified by the second argument.<C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilder.collectionTrim
(Expression<C> arrayExpression, Integer elementCount) Creates basic collection copy without the last N elements, specified by the second argument.HibernateCriteriaBuilder.cos
(Expression<? extends Number> x) Create an expression that returns the cosine of its argument.HibernateCriteriaBuilder.cosh
(Expression<? extends Number> x) Create an expression that returns the hyperbolic cosine of its argument.HibernateCriteriaBuilder.count
(Expression<?> argument, JpaPredicate filter) HibernateCriteriaBuilder.count
(Expression<?> argument, JpaPredicate filter, JpaWindow window) Create acount
aggregate function expression.HibernateCriteriaBuilder.count
(Expression<?> argument, JpaWindow window) HibernateCriteriaBuilder.createWindow()
Create an emptyJpaWindow
to use with window and aggregate functions.<X> JpaCrossJoin<X>
<X> JpaCrossJoin<X>
JpaFrom.crossJoin
(EntityDomainType<X> entity) Create acume_dist
window function expression.HibernateCriteriaBuilder.day
(Expression<? extends TemporalAccessor> datetime) Extracts theTemporalUnit.DAY
of a date, time, or datetime expression.HibernateCriteriaBuilder.degrees
(Expression<? extends Number> x) Create an expression that converts an angle measured in radians to an approximately equivalent angle measured in degrees.Create adense_rank
window function expression.HibernateCriteriaBuilder.desc
(JpaCteCriteriaAttribute x) Create a search ordering by the descending value of the CTE attribute.HibernateCriteriaBuilder.desc
(JpaCteCriteriaAttribute x, boolean nullsFirst) Create a search ordering by the descending value of the CTE attribute.HibernateCriteriaBuilder.duration
(long magnitude, TemporalUnit unit) A literalDuration
, for example, "five days" or "30 minutes".HibernateCriteriaBuilder.durationByUnit
(TemporalUnit unit, Expression<Duration> duration) Convert aDuration
to a numeric magnitude in the given units.<T> JpaExpression<T>
HibernateCriteriaBuilder.firstValue
(Expression<T> argument, JpaWindow window) Create afirst_value
window function expression.HibernateCriteriaBuilder.format
(Expression<? extends TemporalAccessor> datetime, String pattern) Format a date, time, or datetime according to a pattern.HibernateCriteriaBuilder.frameBetweenFollowing
(int offset) HibernateCriteriaBuilder.frameBetweenFollowing
(Expression<?> offset) Create a window frame of typeFrameKind.OFFSET_FOLLOWING
to use withJpaWindow
s.HibernateCriteriaBuilder.frameBetweenPreceding
(int offset) HibernateCriteriaBuilder.frameBetweenPreceding
(Expression<?> offset) Create window frame of typeFrameKind.OFFSET_PRECEDING
to use withJpaWindow
s.HibernateCriteriaBuilder.frameCurrentRow()
Create a window frame of typeFrameKind.CURRENT_ROW
to use withJpaWindow
s.HibernateCriteriaBuilder.frameUnboundedFollowing()
Create a window frame of typeFrameKind.UNBOUNDED_FOLLOWING
to use withJpaWindow
s.HibernateCriteriaBuilder.frameUnboundedPreceding()
Create a window frame of typeFrameKind.UNBOUNDED_PRECEDING
to use withJpaWindow
s.<T> JpaExpression<T>
HibernateCriteriaBuilder.functionAggregate
(String name, Class<T> type, JpaPredicate filter, Expression<?>... args) <T> JpaExpression<T>
HibernateCriteriaBuilder.functionAggregate
(String name, Class<T> type, JpaPredicate filter, JpaWindow window, Expression<?>... args) Create a generic aggregate function expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.functionAggregate
(String name, Class<T> type, JpaWindow window, Expression<?>... args) <T> JpaExpression<T>
HibernateCriteriaBuilder.functionWithinGroup
(String name, Class<T> type, JpaOrder order, Expression<?>... args) <T> JpaExpression<T>
HibernateCriteriaBuilder.functionWithinGroup
(String name, Class<T> type, JpaOrder order, JpaPredicate filter, Expression<?>... args) <T> JpaExpression<T>
HibernateCriteriaBuilder.functionWithinGroup
(String name, Class<T> type, JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<?>... args) Create a generic ordered set-aggregate function expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.functionWithinGroup
(String name, Class<T> type, JpaOrder order, JpaWindow window, Expression<?>... args) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(E start, E stop) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(E start, E stop, E step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(E start, E stop, Expression<E> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(E start, Expression<E> stop) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(E start, Expression<E> stop, E step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(E start, Expression<E> stop, Expression<E> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(Expression<E> start, E stop) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(Expression<E> start, E stop, E step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(Expression<E> start, E stop, Expression<E> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(Expression<E> start, Expression<E> stop) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(Expression<E> start, Expression<E> stop, E step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateSeries
(Expression<E> start, Expression<E> stop, Expression<E> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(E start, E stop, Expression<? extends TemporalAmount> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(E start, E stop, TemporalAmount step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(E start, Expression<E> stop, Expression<? extends TemporalAmount> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(E start, Expression<E> stop, TemporalAmount step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(Expression<E> start, E stop, Expression<? extends TemporalAmount> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(Expression<E> start, E stop, TemporalAmount step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(Expression<E> start, Expression<E> stop, Expression<? extends TemporalAmount> step) Creates agenerate_series
function expression to generate a set of values as rows.<E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilder.generateTimeSeries
(Expression<E> start, Expression<E> stop, TemporalAmount step) Creates agenerate_series
function expression to generate a set of values as rows.HibernateCriteriaBuilder.hour
(Expression<? extends TemporalAccessor> datetime) Extracts theTemporalUnit.HOUR
of a date, time, or datetime expression.<X> JpaDerivedJoin<X>
<X> JpaDerivedJoin<X>
JpaFrom.join
(Subquery<X> subquery, SqmJoinType joinType) Deprecated, for removal: This API element is subject to removal in a future version.This method is a layer-breaker, leaking the SQM typeSqmJoinType
onto an API.<X> JpaDerivedJoin<X>
JpaFrom.join
(Subquery<X> subquery, SqmJoinType joinType, boolean lateral) Deprecated, for removal: This API element is subject to removal in a future version.This method is a layer-breaker, leaking the SQM typeSqmJoinType
onto an API.<X> JpaJoin<?,
X> JpaFrom.join
(JpaCteCriteria<X> cte) <X> JpaJoin<?,
X> JpaFrom.join
(JpaCteCriteria<X> cte, SqmJoinType joinType) Deprecated, for removal: This API element is subject to removal in a future version.This method is a layer-breaker, leaking the SQM typeSqmJoinType
onto an API.<X> JpaFunctionJoin<X>
JpaFrom.join
(JpaSetReturningFunction<X> function) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType)
withSqmJoinType.INNER
.<X> JpaFunctionJoin<X>
JpaFrom.join
(JpaSetReturningFunction<X> function, SqmJoinType joinType) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType, boolean)
passingfalse
for thelateral
parameter.<X> JpaFunctionJoin<X>
JpaFrom.join
(JpaSetReturningFunction<X> function, SqmJoinType joinType, boolean lateral) Creates and returns a join node for the given set returning function.<X> JpaFunctionJoin<X>
JpaFrom.joinArray
(SingularAttribute<? super T, X[]> arrayAttribute) Like calling the overloadJpaFrom.joinArray(SingularAttribute, SqmJoinType)
withSqmJoinType.INNER
.<X> JpaFunctionJoin<X>
JpaFrom.joinArray
(SingularAttribute<? super T, X[]> arrayAttribute, SqmJoinType joinType) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType)
withHibernateCriteriaBuilder.unnestArray(Expression)
with the given attribute.<X> JpaFunctionJoin<X>
Like calling the overloadJpaFrom.joinArray(String, SqmJoinType)
withSqmJoinType.INNER
.<X> JpaFunctionJoin<X>
JpaFrom.joinArray
(String arrayAttributeName, SqmJoinType joinType) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType)
withHibernateCriteriaBuilder.unnestArray(Expression)
with the result ofJpaPath.get(String)
passing the given attribute name.<X> JpaFunctionJoin<X>
JpaFrom.joinArrayCollection
(SingularAttribute<? super T, ? extends Collection<X>> collectionAttribute) Like calling the overloadJpaFrom.joinArrayCollection(SingularAttribute, SqmJoinType)
withSqmJoinType.INNER
.<X> JpaFunctionJoin<X>
JpaFrom.joinArrayCollection
(SingularAttribute<? super T, ? extends Collection<X>> collectionAttribute, SqmJoinType joinType) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType)
withHibernateCriteriaBuilder.unnestCollection(Expression)
with the given attribute.<X> JpaFunctionJoin<X>
JpaFrom.joinArrayCollection
(String collectionAttributeName) Like calling the overloadJpaFrom.joinArrayCollection(String, SqmJoinType)
withSqmJoinType.INNER
.<X> JpaFunctionJoin<X>
JpaFrom.joinArrayCollection
(String collectionAttributeName, SqmJoinType joinType) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType)
withHibernateCriteriaBuilder.unnestCollection(Expression)
with the result ofJpaPath.get(String)
passing the given attribute name.<X> JpaDerivedJoin<X>
JpaFrom.joinLateral
(Subquery<X> subquery) <X> JpaDerivedJoin<X>
JpaFrom.joinLateral
(Subquery<X> subquery, SqmJoinType joinType) Deprecated, for removal: This API element is subject to removal in a future version.This method is a layer-breaker, leaking the SQM typeSqmJoinType
onto an API.<X> JpaFunctionJoin<X>
JpaFrom.joinLateral
(JpaSetReturningFunction<X> function) Like calling the overloadJpaFrom.joinLateral(JpaSetReturningFunction, SqmJoinType)
withSqmJoinType.INNER
.<X> JpaFunctionJoin<X>
JpaFrom.joinLateral
(JpaSetReturningFunction<X> function, SqmJoinType joinType) Like calling the overloadJpaFrom.join(JpaSetReturningFunction, SqmJoinType, boolean)
passingtrue
for thelateral
parameter.HibernateCriteriaBuilder.jsonArray
(Expression<?>... values) Create a JSON array from the array of values.HibernateCriteriaBuilder.jsonArrayAgg
(Expression<?> value) Aggregates the given value into a JSON array.HibernateCriteriaBuilder.jsonArrayAgg
(Expression<?> value, Predicate filter) Aggregates the given value into a JSON array.HibernateCriteriaBuilder.jsonArrayAgg
(Expression<?> value, Predicate filter, JpaOrder... orderBy) Aggregates the given value into a JSON array.HibernateCriteriaBuilder.jsonArrayAgg
(Expression<?> value, JpaOrder... orderBy) Aggregates the given value into a JSON array.HibernateCriteriaBuilder.jsonArrayAggWithNulls
(Expression<?> value) Aggregates the given value into a JSON array, retainingnull
values in the JSON array.HibernateCriteriaBuilder.jsonArrayAggWithNulls
(Expression<?> value, Predicate filter) Aggregates the given value into a JSON array, retainingnull
values in the JSON array.HibernateCriteriaBuilder.jsonArrayAggWithNulls
(Expression<?> value, Predicate filter, JpaOrder... orderBy) Aggregates the given value into a JSON array, retainingnull
values in the JSON array.HibernateCriteriaBuilder.jsonArrayAggWithNulls
(Expression<?> value, JpaOrder... orderBy) Aggregates the given value into a JSON array, retainingnull
values in the JSON array.HibernateCriteriaBuilder.jsonArrayWithNulls
(Expression<?>... values) Create a JSON object from the given array of values, retainingnull
values in the JSON array.HibernateCriteriaBuilder.jsonExists
(Expression<?> jsonDocument, Expression<String> jsonPath) Checks if a JSON document contains a node for the given JSON path.HibernateCriteriaBuilder.jsonExists
(Expression<?> jsonDocument, String jsonPath) Checks if a JSON document contains a node for the given JSON path.HibernateCriteriaBuilder.jsonInsert
(Expression<?> jsonDocument, Expression<String> jsonPath, Expression<?> value) Inserts a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonInsert
(Expression<?> jsonDocument, Expression<String> jsonPath, Object value) Inserts a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonInsert
(Expression<?> jsonDocument, String jsonPath, Expression<?> value) Inserts a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonInsert
(Expression<?> jsonDocument, String jsonPath, Object value) Inserts a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonMergepatch
(Expression<?> document, Expression<?> patch) Applies the patch JSON document onto the other JSON document and returns that.HibernateCriteriaBuilder.jsonMergepatch
(Expression<?> document, String patch) Applies the patch JSON document onto the other JSON document and returns that.HibernateCriteriaBuilder.jsonMergepatch
(String document, Expression<?> patch) Applies the patch JSON document onto the other JSON document and returns that.HibernateCriteriaBuilder.jsonObject
(Map<?, ? extends Expression<?>> keyValues) Create a JSON object from the given map of key values.HibernateCriteriaBuilder.jsonObjectAgg
(Expression<?> key, Expression<?> value) Aggregates the given value under the given key into a JSON object.HibernateCriteriaBuilder.jsonObjectAgg
(Expression<?> key, Expression<?> value, Predicate filter) Aggregates the given value under the given key into a JSON object.HibernateCriteriaBuilder.jsonObjectAggWithNulls
(Expression<?> key, Expression<?> value) Aggregates the given value under the given key into a JSON object, retainingnull
values in the JSON object.HibernateCriteriaBuilder.jsonObjectAggWithNulls
(Expression<?> key, Expression<?> value, Predicate filter) Aggregates the given value under the given key into a JSON object, retainingnull
values in the JSON object.HibernateCriteriaBuilder.jsonObjectAggWithUniqueKeys
(Expression<?> key, Expression<?> value) Aggregates the given value under the given key into a JSON object.HibernateCriteriaBuilder.jsonObjectAggWithUniqueKeys
(Expression<?> key, Expression<?> value, Predicate filter) Aggregates the given value under the given key into a JSON object.HibernateCriteriaBuilder.jsonObjectAggWithUniqueKeysAndNulls
(Expression<?> key, Expression<?> value) Aggregates the given value under the given key into a JSON object, retainingnull
values in the JSON object.HibernateCriteriaBuilder.jsonObjectAggWithUniqueKeysAndNulls
(Expression<?> key, Expression<?> value, Predicate filter) Aggregates the given value under the given key into a JSON object, retainingnull
values in the JSON object.HibernateCriteriaBuilder.jsonObjectWithNulls
(Map<?, ? extends Expression<?>> keyValues) Create a JSON object from the given map of key values, retainingnull
values in the JSON.HibernateCriteriaBuilder.jsonQuery
(Expression<?> jsonDocument, Expression<String> jsonPath) Queries values by JSON path from a JSON document.HibernateCriteriaBuilder.jsonQuery
(Expression<?> jsonDocument, String jsonPath) HibernateCriteriaBuilder.jsonRemove
(Expression<?> jsonDocument, Expression<String> jsonPath) Removes a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonRemove
(Expression<?> jsonDocument, String jsonPath) Removes a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonReplace
(Expression<?> jsonDocument, Expression<String> jsonPath, Expression<?> value) Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonReplace
(Expression<?> jsonDocument, Expression<String> jsonPath, Object value) Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonReplace
(Expression<?> jsonDocument, String jsonPath, Expression<?> value) Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonReplace
(Expression<?> jsonDocument, String jsonPath, Object value) Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonSet
(Expression<?> jsonDocument, Expression<String> jsonPath, Expression<?> value) Inserts/Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonSet
(Expression<?> jsonDocument, Expression<String> jsonPath, Object value) Inserts/Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonSet
(Expression<?> jsonDocument, String jsonPath, Expression<?> value) Inserts/Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonSet
(Expression<?> jsonDocument, String jsonPath, Object value) Inserts/Replaces a value by JSON path within a JSON document.HibernateCriteriaBuilder.jsonTable
(Expression<?> jsonDocument) Creates ajson_table
function expression to generate rows from JSON array elements.HibernateCriteriaBuilder.jsonTable
(Expression<?> jsonDocument, Expression<String> jsonPath) Creates ajson_table
function expression to generate rows from JSON array elements.HibernateCriteriaBuilder.jsonTable
(Expression<?> jsonDocument, String jsonPath) Creates ajson_table
function expression to generate rows from JSON array elements.HibernateCriteriaBuilder.jsonValue
(Expression<?> jsonDocument, Expression<String> jsonPath) <T> JpaJsonValueExpression<T>
HibernateCriteriaBuilder.jsonValue
(Expression<?> jsonDocument, Expression<String> jsonPath, Class<T> returningType) Extracts a value by JSON path from a JSON document.HibernateCriteriaBuilder.jsonValue
(Expression<?> jsonDocument, String jsonPath) <T> JpaJsonValueExpression<T>
HibernateCriteriaBuilder.jsonValue
(Expression<?> jsonDocument, String jsonPath, Class<T> returningType) Extracts a value by JSON path from a JSON document.<T> JpaExpression<T>
HibernateCriteriaBuilder.lastValue
(Expression<T> argument, JpaWindow window) Create alast_value
window function expression.HibernateCriteriaBuilder.left
(Expression<String> x, int length) HibernateCriteriaBuilder.left
(Expression<String> x, Expression<Integer> length) Extract thelength
leftmost characters of a string.HibernateCriteriaBuilder.listagg
(JpaOrder order, Expression<String> argument, Expression<String> separator) HibernateCriteriaBuilder.listagg
(JpaOrder order, Expression<String> argument, String separator) HibernateCriteriaBuilder.listagg
(JpaOrder order, JpaPredicate filter, Expression<String> argument, Expression<String> separator) HibernateCriteriaBuilder.listagg
(JpaOrder order, JpaPredicate filter, Expression<String> argument, String separator) HibernateCriteriaBuilder.listagg
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<String> argument, Expression<String> separator) Create alistagg
ordered set-aggregate function expression.HibernateCriteriaBuilder.listagg
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<String> argument, String separator) HibernateCriteriaBuilder.listagg
(JpaOrder order, JpaWindow window, Expression<String> argument, Expression<String> separator) HibernateCriteriaBuilder.listagg
(JpaOrder order, JpaWindow window, Expression<String> argument, String separator) HibernateCriteriaBuilder.log
(Expression<? extends Number> b, Expression<? extends Number> x) Create an expression that returns the logarithm ofx
to the baseb
.HibernateCriteriaBuilder.log
(Number b, Expression<? extends Number> x) HibernateCriteriaBuilder.log10
(Expression<? extends Number> x) Create an expression that returns the base-10 logarithm of its argument.HibernateCriteriaBuilder.minute
(Expression<? extends TemporalAccessor> datetime) Extracts theTemporalUnit.MINUTE
of a date, time, or datetime expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.mode
(Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.mode
(JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.mode
(JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) Create amode
ordered set-aggregate function expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.mode
(JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) HibernateCriteriaBuilder.month
(Expression<? extends TemporalAccessor> datetime) Extracts theTemporalUnit.MONTH
of a date, time, or datetime expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.named
(Expression<T> expression, String name) Creates a named expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.nthValue
(Expression<T> argument, int n, JpaWindow window) <T> JpaExpression<T>
HibernateCriteriaBuilder.nthValue
(Expression<T> argument, Expression<Integer> n, JpaWindow window) Create anth_value
window function expression.HibernateCriteriaBuilder.overlay
(Expression<String> string, Expression<String> replacement, int start) HibernateCriteriaBuilder.overlay
(Expression<String> string, Expression<String> replacement, int start, int length) HibernateCriteriaBuilder.overlay
(Expression<String> string, Expression<String> replacement, int start, Expression<Integer> length) HibernateCriteriaBuilder.overlay
(Expression<String> string, Expression<String> replacement, Expression<Integer> start) HibernateCriteriaBuilder.overlay
(Expression<String> string, Expression<String> replacement, Expression<Integer> start, int length) HibernateCriteriaBuilder.overlay
(Expression<String> string, Expression<String> replacement, Expression<Integer> start, Expression<Integer> length) Overlay thestring
expression with thereplacement
expression, starting from indexstart
and substituting a number of characters corresponding to the length of thereplacement
expression or thelength
parameter if specified.HibernateCriteriaBuilder.overlay
(Expression<String> string, String replacement, int start) HibernateCriteriaBuilder.overlay
(Expression<String> string, String replacement, int start, int length) HibernateCriteriaBuilder.overlay
(Expression<String> string, String replacement, int start, Expression<Integer> length) HibernateCriteriaBuilder.overlay
(Expression<String> string, String replacement, Expression<Integer> start) HibernateCriteriaBuilder.overlay
(Expression<String> string, String replacement, Expression<Integer> start, int length) HibernateCriteriaBuilder.overlay
(Expression<String> string, String replacement, Expression<Integer> start, Expression<Integer> length) HibernateCriteriaBuilder.pad
(CriteriaBuilder.Trimspec ts, Expression<String> x, int length) HibernateCriteriaBuilder.pad
(CriteriaBuilder.Trimspec ts, Expression<String> x, int length, char padChar) HibernateCriteriaBuilder.pad
(CriteriaBuilder.Trimspec ts, Expression<String> x, int length, Expression<Character> padChar) HibernateCriteriaBuilder.pad
(CriteriaBuilder.Trimspec ts, Expression<String> x, Expression<Integer> length) HibernateCriteriaBuilder.pad
(CriteriaBuilder.Trimspec ts, Expression<String> x, Expression<Integer> length, char padChar) HibernateCriteriaBuilder.pad
(CriteriaBuilder.Trimspec ts, Expression<String> x, Expression<Integer> length, Expression<Character> padChar) Pad the specified string expression with whitespace or with thepadChar
character if specified.HibernateCriteriaBuilder.pad
(Expression<String> x, int length) HibernateCriteriaBuilder.pad
(Expression<String> x, int length, char padChar) HibernateCriteriaBuilder.pad
(Expression<String> x, int length, Expression<Character> padChar) HibernateCriteriaBuilder.pad
(Expression<String> x, Expression<Integer> length) HibernateCriteriaBuilder.pad
(Expression<String> x, Expression<Integer> length, char padChar) HibernateCriteriaBuilder.pad
(Expression<String> x, Expression<Integer> length, Expression<Character> padChar) <T> JpaExpression<T>
HibernateCriteriaBuilder.percentileCont
(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.percentileCont
(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.percentileCont
(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) Create apercentile_cont
ordered set-aggregate function expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.percentileCont
(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.percentileDisc
(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.percentileDisc
(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) <T> JpaExpression<T>
HibernateCriteriaBuilder.percentileDisc
(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) Create apercentile_disc
ordered set-aggregate function expression.<T> JpaExpression<T>
HibernateCriteriaBuilder.percentileDisc
(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence) HibernateCriteriaBuilder.percentRank
(JpaOrder order, Expression<?>... arguments) HibernateCriteriaBuilder.percentRank
(JpaOrder order, JpaPredicate filter, Expression<?>... arguments) HibernateCriteriaBuilder.percentRank
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<?>... arguments) Create apercent_rank
ordered set-aggregate function expression.HibernateCriteriaBuilder.percentRank
(JpaOrder order, JpaWindow window, Expression<?>... arguments) HibernateCriteriaBuilder.percentRank
(JpaWindow window) Create apercent_rank
window function expression.HibernateCriteriaBuilder.pi()
Literal expression corresponding to the value of pi.HibernateCriteriaBuilder.radians
(Expression<? extends Number> x) Create an expression that converts an angle measured in degrees to an approximately equivalent angle measured in radians.HibernateCriteriaBuilder.rank
(JpaOrder order, Expression<?>... arguments) HibernateCriteriaBuilder.rank
(JpaOrder order, JpaPredicate filter, Expression<?>... arguments) HibernateCriteriaBuilder.rank
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<?>... arguments) Create arank
ordered set-aggregate function expression.HibernateCriteriaBuilder.rank
(JpaOrder order, JpaWindow window, Expression<?>... arguments) Create arank
window function expression.HibernateCriteriaBuilder.replace
(Expression<String> x, Expression<String> pattern, Expression<String> replacement) Replace all occurrences ofpattern
within the original string withreplacement
.HibernateCriteriaBuilder.replace
(Expression<String> x, Expression<String> pattern, String replacement) HibernateCriteriaBuilder.replace
(Expression<String> x, String pattern, Expression<String> replacement) HibernateCriteriaBuilder.replace
(Expression<String> x, String pattern, String replacement) HibernateCriteriaBuilder.right
(Expression<String> x, int length) HibernateCriteriaBuilder.right
(Expression<String> x, Expression<Integer> length) Extract thelength
rightmost characters of a string.Create arow_number
window function expression.HibernateCriteriaBuilder.search
(JpaCteCriteriaAttribute cteAttribute) Create a search ordering based on the ascending value of the CTE attribute.HibernateCriteriaBuilder.search
(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder) Create a search ordering based on the sort order of the value of the CTE attribute.HibernateCriteriaBuilder.search
(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder, NullPrecedence nullPrecedence) Create a search ordering based on the sort order and null precedence of the value of the CTE attribute.HibernateCriteriaBuilder.second
(Expression<? extends TemporalAccessor> datetime) Extracts theTemporalUnit.SECOND
of a date, time, or datetime expression.<E> JpaSetReturningFunction<E>
HibernateCriteriaBuilder.setReturningFunction
(String name, Expression<?>... args) Create a new set-returning function expression.HibernateCriteriaBuilder.sin
(Expression<? extends Number> x) Create an expression that returns the sine of its argument.HibernateCriteriaBuilder.sinh
(Expression<? extends Number> x) Create an expression that returns the hyperbolic sine of its argument.<T> JpaExpression<T>
HibernateCriteriaBuilder.sql
(String pattern, Class<T> type, Expression<?>... arguments) Embed nativepattern
that will be unquoted and embedded in the generated SQL.<N extends Number>
JpaExpression<Number>HibernateCriteriaBuilder.sum
(Expression<N> argument, JpaPredicate filter) <N extends Number>
JpaExpression<Number>HibernateCriteriaBuilder.sum
(Expression<N> argument, JpaPredicate filter, JpaWindow window) Create asum
aggregate function expression.<N extends Number>
JpaExpression<Number>HibernateCriteriaBuilder.sum
(Expression<N> argument, JpaWindow window) HibernateCriteriaBuilder.tan
(Expression<? extends Number> x) Create an expression that returns the tangent of its argument.HibernateCriteriaBuilder.tanh
(Expression<? extends Number> x) Create an expression that returns the hyperbolic tangent of its argument.<T extends TemporalAccessor>
JpaFunction<T>HibernateCriteriaBuilder.truncate
(Expression<T> datetime, TemporalUnit temporalUnit) Truncates a date, time or datetime expression to the givenTemporalUnit
.<E> JpaSetReturningFunction<E>
HibernateCriteriaBuilder.unnestArray
(Expression<E[]> array) Creates an unnest function expression to turn an array into a set of rows.<E> JpaSetReturningFunction<E>
HibernateCriteriaBuilder.unnestCollection
(Expression<? extends Collection<E>> collection) Creates an unnest function expression to turn an array into a set of rows.HibernateCriteriaBuilder.values
(Expression<?>... expressions) HibernateCriteriaBuilder.values
(List<? extends Expression<?>> expressions) <T> JpaExpression<T>
HibernateCriteriaBuilder.windowFunction
(String name, Class<T> type, JpaWindow window, Expression<?>... args) Create a generic window function expression that will be applied over the specifiedwindow
.HibernateCriteriaBuilder.xmlagg
(JpaOrder order, Expression<?> argument) HibernateCriteriaBuilder.xmlagg
(JpaOrder order, JpaPredicate filter, Expression<?> argument) HibernateCriteriaBuilder.xmlagg
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<?> argument) Create axmlagg
ordered set-aggregate function expression.HibernateCriteriaBuilder.xmlagg
(JpaOrder order, JpaWindow window, Expression<?> argument) HibernateCriteriaBuilder.xmlcomment
(String comment) Creates an XML comment with the given argument as content.HibernateCriteriaBuilder.xmlconcat
(Expression<?>... elements) Concatenates the given XML element expressions.HibernateCriteriaBuilder.xmlconcat
(List<? extends Expression<?>> elements) Concatenates the given XML element expressions.HibernateCriteriaBuilder.xmlelement
(String elementName) Creates an XML element with the given element name.HibernateCriteriaBuilder.xmlexists
(Expression<String> query, Expression<?> xmlDocument) Checks if the given XPath or XQuery query exists in the given XML document.HibernateCriteriaBuilder.xmlexists
(String query, Expression<?> xmlDocument) Checks if the given XPath or XQuery query exists in the given XML document.HibernateCriteriaBuilder.xmlforest
(Expression<?>... elements) Creates an XML forest from the given XML element expressions.HibernateCriteriaBuilder.xmlforest
(List<? extends Expression<?>> elements) Creates an XML forest from the given XML element expressions.Creates an XML processing with the given name.HibernateCriteriaBuilder.xmlpi
(String elementName, Expression<String> content) Creates an XML processing with the given name and content.HibernateCriteriaBuilder.xmlquery
(Expression<String> query, Expression<?> xmlDocument) Queries the given XML document with the given XPath or XQuery query.HibernateCriteriaBuilder.xmlquery
(String query, Expression<?> xmlDocument) Queries the given XML document with the given XPath or XQuery query.HibernateCriteriaBuilder.xmlTable
(Expression<String> xpath, Expression<?> xmlDocument) Creates axmltable
function expression to generate rows from XML elements.HibernateCriteriaBuilder.xmlTable
(String xpath, Expression<?> xmlDocument) Creates axmltable
function expression to generate rows from XML elements.HibernateCriteriaBuilder.year
(Expression<? extends TemporalAccessor> datetime) Extracts theTemporalUnit.YEAR
of a date, time, or datetime expression. -
Uses of Incubating in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi with annotations of type IncubatingModifier and TypeMethodDescription<T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayAgg
(JpaOrder order, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayAgg
(JpaOrder order, JpaPredicate filter, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayAgg
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayAgg
(JpaOrder order, JpaWindow window, Expression<? extends T> argument) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayAppend
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayAppend
(Expression<T[]> arrayExpression, T element) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayConcat
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayConcat
(Expression<T[]> arrayExpression1, T[] array2) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayConcat
(T[] array1, Expression<T[]> arrayExpression2) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContains
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContains
(Expression<T[]> arrayExpression, T element) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContains
(T[] array, Expression<T> elementExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsAll
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsAll
(Expression<T[]> arrayExpression, T[] subArray) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsAll
(T[] array, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsAllNullable
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsAllNullable
(Expression<T[]> arrayExpression, T[] subArray) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsAllNullable
(T[] array, Expression<T[]> subArrayExpression) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsNullable
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsNullable
(Expression<T[]> arrayExpression, T element) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayContainsNullable
(T[] array, Expression<T> elementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayFill
(Expression<T> elementExpression, Expression<Integer> elementCountExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayFill
(Expression<T> elementExpression, Integer elementCount) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayFill
(T element, Expression<Integer> elementCountExpression) <T> JpaExpression<T[]>
<T> JpaExpression<T>
HibernateCriteriaBuilderDelegate.arrayGet
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression) <T> JpaExpression<T>
HibernateCriteriaBuilderDelegate.arrayGet
(Expression<T[]> arrayExpression, Integer index) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIncludes
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIncludes
(Expression<T[]> arrayExpression, T[] subArray) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIncludes
(T[] array, Expression<T[]> subArrayExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIncludesNullable
(Expression<T[]> arrayExpression, Expression<T[]> subArrayExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIncludesNullable
(Expression<T[]> arrayExpression, T[] subArray) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIncludesNullable
(T[] array, Expression<T[]> subArrayExpression) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIntersects
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIntersects
(Expression<T[]> arrayExpression1, T[] array2) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIntersects
(T[] array1, Expression<T[]> arrayExpression2) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIntersectsNullable
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIntersectsNullable
(Expression<T[]> arrayExpression1, T[] array2) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayIntersectsNullable
(T[] array1, Expression<T[]> arrayExpression2) <T> JpaExpression<Integer>
HibernateCriteriaBuilderDelegate.arrayLength
(Expression<T[]> arrayExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayLiteral
(T... elements) <T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayOverlaps
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayOverlaps
(Expression<T[]> arrayExpression1, T[] array2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayOverlaps
(T[] array1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayOverlapsNullable
(Expression<T[]> arrayExpression1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayOverlapsNullable
(Expression<T[]> arrayExpression1, T[] array2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaPredicate
HibernateCriteriaBuilderDelegate.arrayOverlapsNullable
(T[] array1, Expression<T[]> arrayExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<T> JpaExpression<Integer>
HibernateCriteriaBuilderDelegate.arrayPosition
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaExpression<Integer>
HibernateCriteriaBuilderDelegate.arrayPosition
(Expression<T[]> arrayExpression, T element) <T> JpaExpression<int[]>
HibernateCriteriaBuilderDelegate.arrayPositions
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaExpression<int[]>
HibernateCriteriaBuilderDelegate.arrayPositions
(Expression<T[]> arrayExpression, T element) <T> JpaExpression<List<Integer>>
HibernateCriteriaBuilderDelegate.arrayPositionsList
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaExpression<List<Integer>>
HibernateCriteriaBuilderDelegate.arrayPositionsList
(Expression<T[]> arrayExpression, T element) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayPrepend
(Expression<T> elementExpression, Expression<T[]> arrayExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayPrepend
(T element, Expression<T[]> arrayExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayRemove
(Expression<T[]> arrayExpression, Expression<T> elementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayRemove
(Expression<T[]> arrayExpression, T element) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayRemoveIndex
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayRemoveIndex
(Expression<T[]> arrayExpression, Integer index) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayReplace
(Expression<T[]> arrayExpression, Expression<T> oldElementExpression, Expression<T> newElementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayReplace
(Expression<T[]> arrayExpression, Expression<T> oldElementExpression, T newElement) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayReplace
(Expression<T[]> arrayExpression, T oldElement, Expression<T> newElementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayReplace
(Expression<T[]> arrayExpression, T oldElement, T newElement) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySet
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression, Expression<T> elementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySet
(Expression<T[]> arrayExpression, Expression<Integer> indexExpression, T element) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySet
(Expression<T[]> arrayExpression, Integer index, Expression<T> elementExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySet
(Expression<T[]> arrayExpression, Integer index, T element) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySlice
(Expression<T[]> arrayExpression, Expression<Integer> lowerIndexExpression, Expression<Integer> upperIndexExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySlice
(Expression<T[]> arrayExpression, Expression<Integer> lowerIndexExpression, Integer upperIndex) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySlice
(Expression<T[]> arrayExpression, Integer lowerIndex, Expression<Integer> upperIndexExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arraySlice
(Expression<T[]> arrayExpression, Integer lowerIndex, Integer upperIndex) HibernateCriteriaBuilderDelegate.arrayToString
(Expression<? extends Object[]> arrayExpression, Expression<String> separatorExpression) HibernateCriteriaBuilderDelegate.arrayToString
(Expression<? extends Object[]> arrayExpression, String separator) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayTrim
(Expression<T[]> arrayExpression, Expression<Integer> elementCountExpression) <T> JpaExpression<T[]>
HibernateCriteriaBuilderDelegate.arrayTrim
(Expression<T[]> arrayExpression, Integer elementCount) HibernateCriteriaBuilderDelegate.asc
(JpaCteCriteriaAttribute x) HibernateCriteriaBuilderDelegate.asc
(JpaCteCriteriaAttribute x, boolean nullsFirst) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionAppend
(Expression<C> collectionExpression, E element) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionAppend
(Expression<C> collectionExpression, Expression<? extends E> elementExpression) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionConcat
(C collection1, Expression<? extends Collection<? extends E>> collectionExpression2) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionConcat
(Expression<C> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionConcat
(Expression<C> collectionExpression1, Collection<? extends E> collection2) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContains
(Expression<? extends Collection<E>> collectionExpression, E element) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContains
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends E> elementExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContains
(Collection<E> collection, Expression<E> elementExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsAll
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsAll
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsAll
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsAllNullable
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsAllNullable
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsAllNullable
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsNullable
(Expression<? extends Collection<E>> collectionExpression, E element) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsNullable
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends E> elementExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionContainsNullable
(Collection<E> collection, Expression<E> elementExpression) <T> JpaExpression<Collection<T>>
HibernateCriteriaBuilderDelegate.collectionFill
(Expression<T> elementExpression, Expression<Integer> elementCountExpression) <T> JpaExpression<Collection<T>>
HibernateCriteriaBuilderDelegate.collectionFill
(Expression<T> elementExpression, Integer elementCount) <T> JpaExpression<Collection<T>>
HibernateCriteriaBuilderDelegate.collectionFill
(T element, Expression<Integer> elementCountExpression) <T> JpaExpression<Collection<T>>
HibernateCriteriaBuilderDelegate.collectionFill
(T element, Integer elementCount) <E> JpaExpression<E>
HibernateCriteriaBuilderDelegate.collectionGet
(Expression<? extends Collection<E>> collectionExpression, Expression<Integer> indexExpression) <E> JpaExpression<E>
HibernateCriteriaBuilderDelegate.collectionGet
(Expression<? extends Collection<E>> collectionExpression, Integer index) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIncludes
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIncludes
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIncludes
(Collection<E> collection, Expression<? extends Collection<? extends E>> subArrayExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIncludesNullable
(Expression<? extends Collection<E>> collectionExpression, Expression<? extends Collection<? extends E>> subCollectionExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIncludesNullable
(Expression<? extends Collection<E>> collectionExpression, Collection<? extends E> subCollection) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIncludesNullable
(Collection<E> collection, Expression<? extends Collection<? extends E>> subCollectionExpression) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIntersects
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIntersects
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIntersects
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIntersectsNullable
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIntersectsNullable
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionIntersectsNullable
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) HibernateCriteriaBuilderDelegate.collectionLength
(Expression<? extends Collection<?>> collectionExpression) <E,
C extends Collection<E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionLiteral
(E... elements) <E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionOverlaps
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionOverlaps
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionOverlaps
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionOverlapsNullable
(Expression<? extends Collection<E>> collectionExpression1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionOverlapsNullable
(Expression<? extends Collection<E>> collectionExpression1, Collection<? extends E> collection2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaPredicate
HibernateCriteriaBuilderDelegate.collectionOverlapsNullable
(Collection<E> collection1, Expression<? extends Collection<? extends E>> collectionExpression2) Deprecated, for removal: This API element is subject to removal in a future version.<E> JpaExpression<Integer>
HibernateCriteriaBuilderDelegate.collectionPosition
(Expression<? extends Collection<? extends E>> collectionExpression, E element) <E> JpaExpression<Integer>
HibernateCriteriaBuilderDelegate.collectionPosition
(Expression<? extends Collection<? extends E>> collectionExpression, Expression<E> elementExpression) <T> JpaExpression<int[]>
HibernateCriteriaBuilderDelegate.collectionPositions
(Expression<? extends Collection<? super T>> collectionExpression, Expression<T> elementExpression) <T> JpaExpression<int[]>
HibernateCriteriaBuilderDelegate.collectionPositions
(Expression<? extends Collection<? super T>> collectionExpression, T element) <T> JpaExpression<List<Integer>>
HibernateCriteriaBuilderDelegate.collectionPositionsList
(Expression<? extends Collection<? super T>> collectionExpression, Expression<T> elementExpression) <T> JpaExpression<List<Integer>>
HibernateCriteriaBuilderDelegate.collectionPositionsList
(Expression<? extends Collection<? super T>> collectionExpression, T element) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionPrepend
(E element, Expression<C> collectionExpression) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionPrepend
(Expression<? extends E> elementExpression, Expression<C> collectionExpression) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionRemove
(Expression<C> collectionExpression, E element) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionRemove
(Expression<C> collectionExpression, Expression<? extends E> elementExpression) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionRemoveIndex
(Expression<C> collectionExpression, Expression<Integer> indexExpression) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionRemoveIndex
(Expression<C> collectionExpression, Integer index) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionReplace
(Expression<C> collectionExpression, E oldElement, E newElement) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionReplace
(Expression<C> collectionExpression, E oldElement, Expression<? extends E> newElementExpression) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionReplace
(Expression<C> collectionExpression, Expression<? extends E> oldElementExpression, E newElement) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionReplace
(Expression<C> collectionExpression, Expression<? extends E> oldElementExpression, Expression<? extends E> newElementExpression) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSet
(Expression<C> collectionExpression, Expression<Integer> indexExpression, E element) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSet
(Expression<C> collectionExpression, Expression<Integer> indexExpression, Expression<? extends E> elementExpression) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSet
(Expression<C> collectionExpression, Integer index, E element) <E,
C extends Collection<? super E>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSet
(Expression<C> collectionExpression, Integer index, Expression<? extends E> elementExpression) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSlice
(Expression<C> collectionExpression, Expression<Integer> lowerIndexExpression, Expression<Integer> upperIndexExpression) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSlice
(Expression<C> collectionExpression, Expression<Integer> lowerIndexExpression, Integer upperIndex) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSlice
(Expression<C> collectionExpression, Integer lowerIndex, Expression<Integer> upperIndexExpression) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionSlice
(Expression<C> collectionExpression, Integer lowerIndex, Integer upperIndex) HibernateCriteriaBuilderDelegate.collectionToString
(Expression<? extends Collection<?>> collectionExpression, Expression<String> separatorExpression) HibernateCriteriaBuilderDelegate.collectionToString
(Expression<? extends Collection<?>> collectionExpression, String separator) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionTrim
(Expression<C> arrayExpression, Expression<Integer> elementCountExpression) <C extends Collection<?>>
JpaExpression<C>HibernateCriteriaBuilderDelegate.collectionTrim
(Expression<C> arrayExpression, Integer elementCount) HibernateCriteriaBuilderDelegate.desc
(JpaCteCriteriaAttribute x) HibernateCriteriaBuilderDelegate.desc
(JpaCteCriteriaAttribute x, boolean nullsFirst) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(E start, E stop) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(E start, E stop, E step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(E start, E stop, Expression<E> step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(E start, Expression<E> stop) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(E start, Expression<E> stop, E step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(E start, Expression<E> stop, Expression<E> step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(Expression<E> start, E stop) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(Expression<E> start, E stop, E step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(Expression<E> start, E stop, Expression<E> step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(Expression<E> start, Expression<E> stop) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(Expression<E> start, Expression<E> stop, E step) <E extends Number>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateSeries
(Expression<E> start, Expression<E> stop, Expression<E> step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(E start, E stop, Expression<? extends TemporalAmount> step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(E start, E stop, TemporalAmount step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(E start, Expression<E> stop, Expression<? extends TemporalAmount> step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(E start, Expression<E> stop, TemporalAmount step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(Expression<E> start, E stop, Expression<? extends TemporalAmount> step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(Expression<E> start, E stop, TemporalAmount step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(Expression<E> start, Expression<E> stop, Expression<? extends TemporalAmount> step) <E extends Temporal>
JpaSetReturningFunction<E>HibernateCriteriaBuilderDelegate.generateTimeSeries
(Expression<E> start, Expression<E> stop, TemporalAmount step) HibernateCriteriaBuilderDelegate.jsonArray
(Expression<?>... values) HibernateCriteriaBuilderDelegate.jsonArrayAgg
(Expression<?> value) HibernateCriteriaBuilderDelegate.jsonArrayAgg
(Expression<?> value, Predicate filter) HibernateCriteriaBuilderDelegate.jsonArrayAgg
(Expression<?> value, Predicate filter, JpaOrder... orderBy) HibernateCriteriaBuilderDelegate.jsonArrayAgg
(Expression<?> value, JpaOrder... orderBy) HibernateCriteriaBuilderDelegate.jsonArrayAggWithNulls
(Expression<?> value) HibernateCriteriaBuilderDelegate.jsonArrayAggWithNulls
(Expression<?> value, Predicate filter) HibernateCriteriaBuilderDelegate.jsonArrayAggWithNulls
(Expression<?> value, Predicate filter, JpaOrder... orderBy) HibernateCriteriaBuilderDelegate.jsonArrayAggWithNulls
(Expression<?> value, JpaOrder... orderBy) HibernateCriteriaBuilderDelegate.jsonArrayWithNulls
(Expression<?>... values) HibernateCriteriaBuilderDelegate.jsonExists
(Expression<?> jsonDocument, Expression<String> jsonPath) HibernateCriteriaBuilderDelegate.jsonExists
(Expression<?> jsonDocument, String jsonPath) HibernateCriteriaBuilderDelegate.jsonInsert
(Expression<?> jsonDocument, Expression<String> jsonPath, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonInsert
(Expression<?> jsonDocument, Expression<String> jsonPath, Object value) HibernateCriteriaBuilderDelegate.jsonInsert
(Expression<?> jsonDocument, String jsonPath, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonInsert
(Expression<?> jsonDocument, String jsonPath, Object value) HibernateCriteriaBuilderDelegate.jsonMergepatch
(Expression<?> document, Expression<?> patch) HibernateCriteriaBuilderDelegate.jsonMergepatch
(Expression<?> document, String patch) HibernateCriteriaBuilderDelegate.jsonMergepatch
(String document, Expression<?> patch) HibernateCriteriaBuilderDelegate.jsonObject
(Map<?, ? extends Expression<?>> keyValues) HibernateCriteriaBuilderDelegate.jsonObjectAgg
(Expression<?> key, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonObjectAgg
(Expression<?> key, Expression<?> value, Predicate filter) HibernateCriteriaBuilderDelegate.jsonObjectAggWithNulls
(Expression<?> key, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonObjectAggWithNulls
(Expression<?> key, Expression<?> value, Predicate filter) HibernateCriteriaBuilderDelegate.jsonObjectAggWithUniqueKeys
(Expression<?> key, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonObjectAggWithUniqueKeys
(Expression<?> key, Expression<?> value, Predicate filter) HibernateCriteriaBuilderDelegate.jsonObjectAggWithUniqueKeysAndNulls
(Expression<?> key, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonObjectAggWithUniqueKeysAndNulls
(Expression<?> key, Expression<?> value, Predicate filter) HibernateCriteriaBuilderDelegate.jsonObjectWithNulls
(Map<?, ? extends Expression<?>> keyValues) HibernateCriteriaBuilderDelegate.jsonQuery
(Expression<?> jsonDocument, Expression<String> jsonPath) HibernateCriteriaBuilderDelegate.jsonQuery
(Expression<?> jsonDocument, String jsonPath) HibernateCriteriaBuilderDelegate.jsonRemove
(Expression<?> jsonDocument, Expression<String> jsonPath) HibernateCriteriaBuilderDelegate.jsonRemove
(Expression<?> jsonDocument, String jsonPath) HibernateCriteriaBuilderDelegate.jsonReplace
(Expression<?> jsonDocument, Expression<String> jsonPath, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonReplace
(Expression<?> jsonDocument, Expression<String> jsonPath, Object value) HibernateCriteriaBuilderDelegate.jsonReplace
(Expression<?> jsonDocument, String jsonPath, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonReplace
(Expression<?> jsonDocument, String jsonPath, Object value) HibernateCriteriaBuilderDelegate.jsonSet
(Expression<?> jsonDocument, Expression<String> jsonPath, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonSet
(Expression<?> jsonDocument, Expression<String> jsonPath, Object value) HibernateCriteriaBuilderDelegate.jsonSet
(Expression<?> jsonDocument, String jsonPath, Expression<?> value) HibernateCriteriaBuilderDelegate.jsonSet
(Expression<?> jsonDocument, String jsonPath, Object value) HibernateCriteriaBuilderDelegate.jsonTable
(Expression<?> jsonDocument) HibernateCriteriaBuilderDelegate.jsonTable
(Expression<?> jsonDocument, Expression<String> jsonPath) HibernateCriteriaBuilderDelegate.jsonTable
(Expression<?> jsonDocument, String jsonPath) HibernateCriteriaBuilderDelegate.jsonValue
(Expression<?> jsonDocument, Expression<String> jsonPath) <T> JpaJsonValueExpression<T>
HibernateCriteriaBuilderDelegate.jsonValue
(Expression<?> jsonDocument, Expression<String> jsonPath, Class<T> returningType) HibernateCriteriaBuilderDelegate.jsonValue
(Expression<?> jsonDocument, String jsonPath) <T> JpaJsonValueExpression<T>
HibernateCriteriaBuilderDelegate.jsonValue
(Expression<?> jsonDocument, String jsonPath, Class<T> returningType) <T> JpaExpression<T>
HibernateCriteriaBuilderDelegate.named
(Expression<T> expression, String name) HibernateCriteriaBuilderDelegate.search
(JpaCteCriteriaAttribute cteAttribute) HibernateCriteriaBuilderDelegate.search
(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder) HibernateCriteriaBuilderDelegate.search
(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder, NullPrecedence nullPrecedence) <E> JpaSetReturningFunction<E>
HibernateCriteriaBuilderDelegate.setReturningFunction
(String name, Expression<?>... args) <E> JpaSetReturningFunction<E>
HibernateCriteriaBuilderDelegate.unnestArray
(Expression<E[]> array) <E> JpaSetReturningFunction<E>
HibernateCriteriaBuilderDelegate.unnestCollection
(Expression<? extends Collection<E>> collection) HibernateCriteriaBuilderDelegate.values
(Expression<?>... expressions) HibernateCriteriaBuilderDelegate.values
(List<? extends Expression<?>> expressions) HibernateCriteriaBuilderDelegate.xmlagg
(JpaOrder order, Expression<?> argument) HibernateCriteriaBuilderDelegate.xmlagg
(JpaOrder order, JpaPredicate filter, Expression<?> argument) HibernateCriteriaBuilderDelegate.xmlagg
(JpaOrder order, JpaPredicate filter, JpaWindow window, Expression<?> argument) HibernateCriteriaBuilderDelegate.xmlagg
(JpaOrder order, JpaWindow window, Expression<?> argument) HibernateCriteriaBuilderDelegate.xmlcomment
(String comment) HibernateCriteriaBuilderDelegate.xmlconcat
(Expression<?>... elements) HibernateCriteriaBuilderDelegate.xmlconcat
(List<? extends Expression<?>> elements) HibernateCriteriaBuilderDelegate.xmlelement
(String elementName) HibernateCriteriaBuilderDelegate.xmlexists
(Expression<String> query, Expression<?> xmlDocument) HibernateCriteriaBuilderDelegate.xmlexists
(String query, Expression<?> xmlDocument) HibernateCriteriaBuilderDelegate.xmlforest
(Expression<?>... elements) HibernateCriteriaBuilderDelegate.xmlforest
(List<? extends Expression<?>> elements) HibernateCriteriaBuilderDelegate.xmlpi
(String elementName, Expression<String> content) HibernateCriteriaBuilderDelegate.xmlquery
(Expression<String> query, Expression<?> xmlDocument) HibernateCriteriaBuilderDelegate.xmlquery
(String query, Expression<?> xmlDocument) HibernateCriteriaBuilderDelegate.xmlTable
(Expression<String> xpath, Expression<?> xmlDocument) HibernateCriteriaBuilderDelegate.xmlTable
(String xpath, Expression<?> xmlDocument) -
Uses of Incubating in org.hibernate.query.derived
Classes in org.hibernate.query.derived with annotations of type IncubatingModifier and TypeClassDescriptionclass
class
class
class
class
class
class
class
class
class
class
class
The table group producer for an anonymous tuple type.class
class
The table group producer for a CTE tuple type. -
Uses of Incubating in org.hibernate.query.hql
Classes in org.hibernate.query.hql with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Main entry point into building semantic queries. -
Uses of Incubating in org.hibernate.query.hql.spi
Classes in org.hibernate.query.hql.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Options for semantic analysisinterface
State related to SQM creation, likeSqmCreationState
, but specific to its "current processing" - which generally means specific to each statement and sub-queryinterface
Models the state pertaining to the creation of a single SQM.interface
Registry for SqmPath references providing the ability to access them in multiple ways - by alias, by NavigablePath, etc -
Uses of Incubating in org.hibernate.query.internal
Classes in org.hibernate.query.internal with annotations of type IncubatingModifier and TypeClassDescriptionclass
Manages the group of QueryParameterBinding for a particular query.class
-
Uses of Incubating in org.hibernate.query.named
Classes in org.hibernate.query.named with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Contract for Query impls that can be converted to a named query memento to be stored in theNamedObjectRepository
interface
Repository for references to named things related to queries.interface
Used to keep information about named result mappings defined by the application which can then be applied to native-sql and stored-procedure queries.interface
-
Uses of Incubating in org.hibernate.query.procedure
Classes in org.hibernate.query.procedure with annotations of type Incubating -
Uses of Incubating in org.hibernate.query.results
Classes in org.hibernate.query.results with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Responsible for building a singleFetch
instance.interface
Responsible for building a singleDomainResult
.interface
JdbcValuesMappingProducer implementation based on a graph of ResultBuilder and FetchBuilder reference. -
Uses of Incubating in org.hibernate.query.spi
Classes in org.hibernate.query.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Unification of Iterator and AutoCloseableinterface
Aggregation and encapsulation of the components Hibernate uses to execute queries (HQL, Criteria and native)interface
interface
Cache for various parts of translating or interpreting queries.interface
The value/type binding information for a particular query parameter.interface
Manages all the parameter bindings for a particular query.interface
A resolver forBindableType
based on a parameter value being bound, when no explicit type information is supplied.interface
Represents a "parameter list" binding: aka the binding of a collection of values for a single query parameter.interface
Common contract for select and mutation query plansinterface
interface
General contract for performing execution of a query returning results. -
Uses of Incubating in org.hibernate.query.sql.spi
Classes in org.hibernate.query.sql.spi with annotations of type Incubating -
Uses of Incubating in org.hibernate.query.sqm.function
Classes in org.hibernate.query.sqm.function with annotations of type IncubatingModifier and TypeClassDescriptionclass
class
class
Provides a standard implementation that supports the majority of the HQL functions that are translated to SQL.class
interface
A factory for SQM nodes representing invocations of a certain named set-returning function. -
Uses of Incubating in org.hibernate.query.sqm.produce.function
Classes in org.hibernate.query.sqm.produce.function with annotations of type IncubatingModifier and TypeClassDescriptionclass
interface
Pluggable strategy for resolving a function return type for a specific call.static interface
Pluggable strategy for resolving a function return type for a specific call. -
Uses of Incubating in org.hibernate.query.sqm.produce.function.internal
Classes in org.hibernate.query.sqm.produce.function.internal with annotations of type Incubating -
Uses of Incubating in org.hibernate.query.sqm.spi
Classes in org.hibernate.query.sqm.spi with annotations of type IncubatingModifier and TypeClassDescriptionclass
interface
The context in which all SQM creations occur.interface
Methods in org.hibernate.query.sqm.spi with annotations of type IncubatingModifier and TypeMethodDescription -
Uses of Incubating in org.hibernate.query.sqm.tree
Methods in org.hibernate.query.sqm.tree with annotations of type IncubatingModifier and TypeMethodDescriptiondefault boolean
SqmCopyContext.copyFetchedFlag()
Returns whether thefetch
flag for attribute joins should be copied over.default @Nullable SqmQuerySource
SqmCopyContext.getQuerySource()
Returns the query source to use for copied queries. -
Uses of Incubating in org.hibernate.query.sqm.tree.domain
Classes in org.hibernate.query.sqm.tree.domain with annotations of type Incubating -
Uses of Incubating in org.hibernate.query.sqm.tree.expression
Classes in org.hibernate.query.sqm.tree.expression with annotations of type IncubatingModifier and TypeClassDescriptionclass
Base class for expressions that contain a json path.class
Special expression for the json_exists function that also captures special syntax elements like error behavior and passing variables.class
Special expression for the json_query function that also captures special syntax elements like error and empty behavior.class
Special expression for the json_value function that also captures special syntax elements like error and empty behavior.class
A named expression.class
A SQM set-returning functionclass
class
class
Special expression for the json_query function that also captures special syntax elements like error and empty behavior.class
Special expression for the xmlelement function that also captures special syntax elements like xmlattributes. -
Uses of Incubating in org.hibernate.query.sqm.tree.from
Classes in org.hibernate.query.sqm.tree.from with annotations of type IncubatingMethods in org.hibernate.query.sqm.tree.from with annotations of type Incubating -
Uses of Incubating in org.hibernate.query.sqm.tree.insert
Classes in org.hibernate.query.sqm.tree.insert with annotations of type Incubating -
Uses of Incubating in org.hibernate.relational
Classes in org.hibernate.relational with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Allows programmatic schema export, schema validation, data cleanup, and schema cleanup as a convenience for writing tests. -
Uses of Incubating in org.hibernate.spi
Classes in org.hibernate.spi with annotations of type IncubatingModifier and TypeClassDescriptionclass
Specialized implementation ofNavigablePath
for handling special cases pertaining to entity identifiers.class
A compound name where the root path element is an entity name or a collection role and each the path sub-path from the root references a domain or mapping model part relative to a root path.class
An implementation ofNavigablePath
with special handling for treated paths. -
Uses of Incubating in org.hibernate.sql.ast
Classes in org.hibernate.sql.ast with annotations of type IncubatingModifier and TypeClassDescriptionenum
Used to indicate which query clause we are currently processinginterface
Methods in org.hibernate.sql.ast with annotations of type IncubatingModifier and TypeMethodDescriptionvoid
SqlAstTranslator.renderNamedSetReturningFunction
(String functionName, List<? extends SqlAstNode> sqlAstArguments, AnonymousTupleTableGroupProducer tupleType, String tableIdentifierVariable, SqlAstNodeRenderingMode argumentRenderingMode) Renders a named set returning function. -
Uses of Incubating in org.hibernate.sql.ast.tree.expression
Classes in org.hibernate.sql.ast.tree.expression with annotations of type Incubating -
Uses of Incubating in org.hibernate.sql.exec.spi
Classes in org.hibernate.sql.exec.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
An executor for JdbcSelect operations. -
Uses of Incubating in org.hibernate.sql.model
Classes in org.hibernate.sql.model with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Mutation for a specific table as part of a logical mutation on the entity. -
Uses of Incubating in org.hibernate.sql.results.graph
Classes in org.hibernate.sql.results.graph with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
DomainResult<J>
Represents a result value in the domain query results.interface
Responsible for "assembling" a result for inclusion in the domain query result.interface
Contains state related to buildingDomainResult
andFetch
graphsinterface
Marker for all object types that can be part of a result mappinginterface
State used as part of applying entity graphs to HibernateDomainResult
/Fetch
load graphs.interface
Contract for fetches including entity, collection and composite.interface
Parts of the domain model that can be fetched.interface
This is essentially a List of Fetch(es), but exposing an interface which is more suitable to our needs; in particular it expresses the immutable nature of this structure, and allows us to extend it with additional convenience methods such asFetchList.indexedForEach(IndexedConsumer)
.interface
Contract for things that can be the parent of a fetchinterface
Initializer<Data extends InitializerData>
Defines a multi-step process for initializing entity, collection and composite state.Methods in org.hibernate.sql.results.graph with annotations of type IncubatingModifier and TypeMethodDescriptionvoid
DomainResultGraphNode.collectValueIndexesToCache
(BitSet valueIndexes) Collect the JDBC value indexes used by this domain result that should be cached. -
Uses of Incubating in org.hibernate.sql.results.graph.embeddable
Classes in org.hibernate.sql.results.graph.embeddable with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Specialized EmbeddableResultGraphNode for cases where we have an actual embeddable class. -
Uses of Incubating in org.hibernate.sql.results.internal
Classes in org.hibernate.sql.results.internal with annotations of type IncubatingModifier and TypeClassDescriptionclass
Returns the first object in each row, if there is exactly one item in the selection list, or the whole row otherwise. -
Uses of Incubating in org.hibernate.sql.results.jdbc.spi
Classes in org.hibernate.sql.results.jdbc.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Producer for JdbcValuesMapping references.interface
Pluggable contract for providing customJdbcValuesMappingProducer
implementations. -
Uses of Incubating in org.hibernate.sql.results.spi
Classes in org.hibernate.sql.results.spi with annotations of type IncubatingModifier and TypeClassDescriptionclass
Reads rows without producing a result.interface
Defines transformation of a raw row in the domain query result row.class
Used beneathSelectionQuery.getResultCount()
. -
Uses of Incubating in org.hibernate.tool.schema.extract.spi
Classes in org.hibernate.tool.schema.extract.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Provides access to information about existing table columnsinterface
Provides access to information about existing schema objects (tables, sequences etc) of existing database.interface
Defines a context for performing extraction including providing access to information about ongoing extraction as well as to delegates needed in performing extraction.static interface
In conjunction withExtractionContext.getDatabaseObjectAccess()
provides access to information about known database objects to the extractor.static interface
interface
Contract for extracting information about objects in the database schema(s).Methods in org.hibernate.tool.schema.extract.spi with annotations of type IncubatingModifier and TypeMethodDescriptiondefault <T> T
ExtractionContext.getQueryResults
(String queryString, Object[] positionalParameters, ExtractionContext.ResultSetProcessor<T> resultSetProcessor) -
Uses of Incubating in org.hibernate.tool.schema.internal
Classes in org.hibernate.tool.schema.internal with annotations of type IncubatingModifier and TypeClassDescriptionclass
The basic implementation ofCleaner
.class
ATableMigrator
that only knows how to add new columns. -
Uses of Incubating in org.hibernate.tool.schema.spi
Classes in org.hibernate.tool.schema.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
An object that produces the SQL required to truncate the tables in a schema.interface
Parameter object representing options for schema management tool executioninterface
Encapsulates the functionality for extracting database metadata used bySchemaManagementTool
.interface
Service delegate for handling schema creation.interface
Service delegate for handling schema dropping.interface
Defines a filter for Hibernate's schema tooling.interface
Used to specify theSchemaFilter
s to be used by create, drop, migrate and validate operations on the database schema.interface
Contract for schema management tool integration.interface
Service delegate for handling schema migration.interface
Service delegate for handling schema truncation.interface
Service delegate for handling schema validations -
Uses of Incubating in org.hibernate.tuple.entity
Classes in org.hibernate.tuple.entity with annotations of type Incubating -
Uses of Incubating in org.hibernate.type
Classes in org.hibernate.type with annotations of type IncubatingMethods in org.hibernate.type with annotations of type IncubatingModifier and TypeMethodDescriptiondefault String
BasicType.getCheckCondition
(String columnName, Dialect dialect) The check constraint that should be added to the column definition in generated DDL.default BasicValueConverter<T,
?> BasicType.getValueConverter()
boolean
CollectionType.isInverse
(SessionFactoryImplementor factory) -
Uses of Incubating in org.hibernate.type.descriptor.converter.spi
Classes in org.hibernate.type.descriptor.converter.spi with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
BasicValueConverter<D,
R> Support for basic-typed value conversions.interface
BasicValueConverter
extension forAttributeConverter
-specific support -
Uses of Incubating in org.hibernate.type.descriptor.java
Classes in org.hibernate.type.descriptor.java with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
Descriptor for a basic plural Java type.interface
Specialized JavaType for temporal types.Methods in org.hibernate.type.descriptor.java with annotations of type IncubatingModifier and TypeMethodDescriptionJavaType.createJavaType
(ParameterizedType parameterizedType, TypeConfiguration typeConfiguration) Creates theJavaType
for the givenParameterizedType
based on thisJavaType
registered for the raw type.default String
JavaType.getCheckCondition
(String columnName, JdbcType jdbcType, BasicValueConverter<T, ?> converter, Dialect dialect) The check constraint that should be added to the column definition in generated DDL. -
Uses of Incubating in org.hibernate.type.descriptor.java.spi
Classes in org.hibernate.type.descriptor.java.spi with annotations of type IncubatingModifier and TypeClassDescriptionclass
BasicCollectionJavaType<C extends Collection<E>,
E> Descriptor for handling persistent collections.class
Java type forFormatMapper
based types i.e.class
JsonJavaType<T>
class
XmlJavaType<T>
-
Uses of Incubating in org.hibernate.type.descriptor.jdbc
Methods in org.hibernate.type.descriptor.jdbc with annotations of type IncubatingModifier and TypeMethodDescriptiondefault void
JdbcType.addAuxiliaryDatabaseObjects
(JavaType<?> javaType, BasicValueConverter<?, ?> valueConverter, Size columnSize, Database database, JdbcTypeIndicators context) default void
JdbcType.appendWriteExpression
(String writeExpression, SqlAppender appender, Dialect dialect) Append the write expression wrapped in a way to be able to write values with this JdbcType's ValueBinder.DelegatingJdbcTypeIndicators.getExplicitJdbcTypeCode()
default Integer
JdbcTypeIndicators.getExplicitJdbcTypeCode()
Used (for now) only to choose a containerJdbcType
for SQL arrays.default String
JdbcType.getExtraCreateTableInfo
(JavaType<?> javaType, String columnName, String tableName, Database database) default Class<?>
JdbcType.getPreferredJavaTypeClass
(WrapperOptions options) The Java type class that is preferred by the binder or null.default boolean
JdbcType.hasDatePart()
default boolean
JdbcType.hasTimePart()
default boolean
JdbcType.isBoolean()
default boolean
JdbcType.isComparable()
default boolean
JdbcType.isImplicitJson()
default boolean
JdbcType.isImplicitXml()
default boolean
JdbcType.isJson()
default boolean
JdbcType.isSmallInteger()
default boolean
JdbcType.isSpatial()
default boolean
JdbcType.isStringLikeExcludingClob()
default boolean
JdbcType.isXml()
boolean
DelegatingJdbcTypeIndicators.isXmlFormatMapperLegacyFormatEnabled()
default boolean
JdbcTypeIndicators.isXmlFormatMapperLegacyFormatEnabled()
Whether to use the legacy format for serializing/deserializing XML data.default Expression
JdbcType.wrapTopLevelSelectionExpression
(Expression expression) Wraps the top level selection expression to be able to read values with this JdbcType's ValueExtractor.default String
JdbcType.wrapWriteExpression
(String writeExpression, Dialect dialect) Wraps the write expression to be able to write values with this JdbcType's ValueBinder. -
Uses of Incubating in org.hibernate.type.descriptor.sql
Methods in org.hibernate.type.descriptor.sql with annotations of type IncubatingModifier and TypeMethodDescriptiondefault String[]
DdlType.getRawTypeNames()
Deprecated.not appropriate for named enum or array types -
Uses of Incubating in org.hibernate.type.format
Classes in org.hibernate.type.format with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
A mapper for mapping objects to and from a format. -
Uses of Incubating in org.hibernate.type.spi
Classes in org.hibernate.type.spi with annotations of type IncubatingModifier and TypeClassDescriptionclass
Each instance defines a set of types available in a given persistence unit, and isolates them from other configurations. -
Uses of Incubating in org.hibernate.usertype
Classes in org.hibernate.usertype with annotations of type IncubatingModifier and TypeInterfaceDescriptioninterface
This interface should be implemented by user-defined custom types that have persistent attributes and can be thought of as something more like an embeddable object.Methods in org.hibernate.usertype with annotations of type IncubatingModifier and TypeMethodDescriptiondefault JdbcType
UserType.getJdbcType
(TypeConfiguration typeConfiguration) A mappedJdbcType
.default Type
DynamicParameterizedType.ParameterType.getReturnedJavaType()
default BasicValueConverter<J,
Object> UserType.getValueConverter()
Returns the converter that this custom type uses for transforming from the domain type to the relational type, ornull
if there is no conversion.
Column.secondPrecision()
which was introduced in JPA 3.2