ObjectDB Database Search
101-150 of 200 resultsjakarta.persistence.EntityManager.contains(Object) Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager boolean contains ( Object entity ) Determine if the given object is a managed entity instance belonging to the current persistence context. Parameters: entity - entity instance Returns: boolean value indicating | |
jakarta.persistence.criteria.From.isCorrelated() Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.From boolean isCorrelated() Whether the From object has been obtained as a result of correlation (use of a Subquery.correlate method). Returns: boolean indicating whether the object has been obtained through correlation. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaUpdate.where(Expression) of the update according to the specified boolean expression. Replaces the previously added restriction(s), if any. Parameters: restriction - a simple or compound boolean expression Returns: the modified update query. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaDelete.where(Expression) of the deletion according to the specified boolean expression. Replaces the previously added restriction(s), if any. Parameters: restriction - a simple or compound boolean expression Returns: the modified delete query. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaQuery.where(Expression) to the specified boolean expression. Replaces the previously added restriction(s), if any. This method ... - a simple or compound boolean expression Returns: the modified query. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.Cache.contains(Class,Object) Jakarta Persistence (JPA) Method in jakarta.persistence.Cache boolean contains ( Class cls , Object primaryKey ) Whether the cache contains data for the given entity. Parameters: cls - entity class primaryKey - primary key Returns: boolean indicating whether the entity is in the cache. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.Index, following the BNF rule column_list given above. Since: Jakarta Persistence (JPA) 1.0 boolean unique | |
jakarta.persistence.ManyToOne specified, defaults to EAGER . Default: FetchType.EAGER Since: Jakarta Persistence (JPA) 1.0 boolean | |
jakarta.persistence.NamedEntityGraph that are included in this graph. Default: {} Since: Jakarta Persistence (JPA) 1.0 boolean | |
jakarta.persistence.Converter. See Also: AttributeConverter Convert Since: Jakarta Persistence (JPA) 2.1 Annotation Elements boolean autoApply | |
jakarta.persistence.Basic, defaults to EAGER . Default: FetchType.EAGER Since: Jakarta Persistence (JPA) 1.0 boolean optional | |
jakarta.persistence.Cacheable Cache article explains how to use Cacheable . Annotation Elements boolean value (Optional) Whether or | |
jakarta.persistence.OneToMany Persistence (JPA) 1.0 boolean orphanRemoval (Optional) Whether to apply the remove operation to entities | |
jakarta.persistence.PersistenceUnitUtil.isLoaded(Object) Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceUnitUtil boolean isLoaded ( Object entity ) Determine the load state of an entity belonging to the persistence unit. This method can be used to determine the load state of an entity passed as a reference. An entity | |
jakarta.persistence.PersistenceUnitUtil.isLoaded(Object,String) Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceUnitUtil boolean isLoaded ( Object entity , String attributeName ) Determine the load state of a given persistent attribute of an entity belonging to the persistence unit. Parameters: attributeName - name | |
jakarta.persistence.PersistenceUnitUtil.isLoaded(E,Attribute) Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceUnitUtil boolean isLoaded ( E entity , Attribute attribute ) Determine the load state of a given persistent attribute of an entity belonging to the persistence unit. Parameters: attribute - attribute | |
jakarta.persistence.criteria.CollectionJoin.on(Expression). Parameters: restriction - a simple or compound boolean expression Returns: the modified join object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.AbstractQuery.having(Expression) boolean expression Returns: the modified query. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Predicate.getExpressions(). Returns: list of boolean expressions forming the predicate. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.SetJoin.on(Expression) - a simple or compound boolean expression Returns: the modified join object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.Subquery.having(Expression) of the corresponding AbstractQuery method. Parameters: restriction - a simple or compound boolean expression Returns: the modified subquery. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.ListJoin.on(Expression): restriction - a simple or compound boolean expression Returns: the modified join object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.Join.on(Expression) - a simple or compound boolean expression Returns: the modified join object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.MapJoin.on(Expression) - a simple or compound boolean expression Returns: the modified join object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.StoredProcedureQuery.execute() Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery boolean execute() Return true if the first result corresponds to a result set, and false if it is an update count or if there are no results other than through INOUT and OUT parameters, if any. Returns: true if first | |
jakarta.persistence.StoredProcedureQuery.hasMoreResults() Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery boolean hasMoreResults() Return true if the next result corresponds to a result set, and false if it is an update count or if there are no results other than through INOUT and OUT parameters, if any. Returns: true | |
jakarta.persistence.Graph.hasAttributeNode(String) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph boolean hasAttributeNode ( String attributeName ) Determine if there is an existing attribute node for the attribute with the given name. Parameters: attributeName - name of the attribute Returns: true | |
jakarta.persistence.Graph.hasAttributeNode(Attribute) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph boolean hasAttributeNode ( Attribute attribute ) Determine if there is an existing attribute node for the given attribute. Parameters: attribute - attribute Returns: true if there is an existing attribute node. Since: Jakarta Persistence (JPA) 3.2 | |
jakarta.persistence.Index.unique Jakarta Persistence (JPA) Method in jakarta.persistence.Index boolean unique (Optional) Whether the index is unique. Default: false Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.EntityManager.isOpen() Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager boolean isOpen() Determine whether the entity manager is open. Returns: true until the entity manager has been closed. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.OneToMany.orphanRemoval Jakarta Persistence (JPA) Method in jakarta.persistence.OneToMany boolean orphanRemoval (Optional) Whether to apply the remove operation to entities that have been removed from the relationship and to cascade the remove operation to those entities. Default: false Since: Jakarta Persistence (JPA) 2.0 | |
jakarta.persistence.OrderColumn.nullable Jakarta Persistence (JPA) Method in jakarta.persistence.OrderColumn boolean nullable (Optional) Whether the database column is nullable. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.OrderColumn.insertable Jakarta Persistence (JPA) Method in jakarta.persistence.OrderColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.OneToOne.optional Jakarta Persistence (JPA) Method in jakarta.persistence.OneToOne boolean optional (Optional) Whether the association is optional. If set to false then a non-null relationship must always exist. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.OneToOne.orphanRemoval Jakarta Persistence (JPA) Method in jakarta.persistence.OneToOne boolean orphanRemoval (Optional) Whether to apply the remove operation to entities that have been removed from the relationship and to cascade the remove operation to those entities. Default: false Since: Jakarta Persistence (JPA) 2.0 | |
jakarta.persistence.Persistence.PersistenceUtilImpl.isLoaded(Object,String) Jakarta Persistence (JPA) Method in jakarta.persistence.Persistence.PersistenceUtilImpl boolean isLoaded ( Object entity , String attributeName ) Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.Persistence.PersistenceUtilImpl.isLoaded(Object) Jakarta Persistence (JPA) Method in jakarta.persistence.Persistence.PersistenceUtilImpl boolean isLoaded ( Object entity ) Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.OrderColumn.updatable Jakarta Persistence (JPA) Method in jakarta.persistence.OrderColumn boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.NamedEntityGraph.includeAllAttributes Jakarta Persistence (JPA) Method in jakarta.persistence.NamedEntityGraph boolean includeAllAttributes (Optional) Includes all of the attributes of the annotated entity class as attribute nodes in the NamedEntityGraph without the need to explicitly list them. Included attributes can still be fully | |
jakarta.persistence.MapKeyColumn.unique Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyColumn boolean unique (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column | |
jakarta.persistence.MapKeyColumn.nullable Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyColumn boolean nullable (Optional) Whether the database column is nullable. Default: false Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyColumn.insertable Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.ManyToOne.optional Jakarta Persistence (JPA) Method in jakarta.persistence.ManyToOne boolean optional (Optional) Whether the association is optional. If set to false then a non-null relationship must always exist. May be used in schema generation to infer that the mapped foreign key column is not null . Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyColumn.updatable Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyColumn boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyJoinColumn.insertable Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyJoinColumn.updatable Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyJoinColumn.unique Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn boolean unique (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. Default: false Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.MapKeyJoinColumn.nullable Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn boolean nullable (Optional) Whether the foreign key column is nullable. Default: false Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.JoinColumn.updatable Jakarta Persistence (JPA) Method in jakarta.persistence.JoinColumn boolean updatable (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.JoinColumn.unique Jakarta Persistence (JPA) Method in jakarta.persistence.JoinColumn boolean unique (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. It is not necessary |