ObjectDB Database Search
51-100 of 200 resultsjakarta.persistence.criteria.CriteriaBuilder.parameter(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder ParameterExpression parameter ( Class paramClass ) Create a parameter expression. Parameters: paramClass - parameter class Returns: parameter expression. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaBuilder.parameter(Class,String) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder ParameterExpression parameter ( Class paramClass , String name ) Create a parameter ... paramClass - parameter class Returns: parameter expression. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.From.join(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.From Join join ( Class entityClass ) Create and add an inner join to the given entity. Parameters: entityClass - the target entity class Returns: the resulting join. Since: Jakarta Persistence (JPA) 3.2 | |
jakarta.persistence.criteria.From.join(Class,JoinType) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.From Join join ( Class entityClass , JoinType joinType ) Create and add a join to the given entity. Parameters: entityClass - the target entity class joinType - join type Returns: the resulting join. Since: Jakarta Persistence (JPA) 3.2 | |
jakarta.persistence.criteria.CriteriaUpdate.from(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaUpdate Root from ( Class entityClass ) Create and add a query root corresponding to the entity ... . Parameters: entityClass - the entity class Returns: query root corresponding to the given entity. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.Expression.as(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.Expression Expression as ( Class type ) Perform a typecast upon the expression, returning a new expression object ... : new expression of the given type. See Also: ::cast( Class ) Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CriteriaDelete.from(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaDelete Root from ( Class entityClass ) Create and add a query root corresponding to the entity ... . Parameters: entityClass - the entity class Returns: query root corresponding to the given entity. 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.criteria.CriteriaBuilder.treat(SetJoin,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder SetJoin treat ( SetJoin join , Class type ) Downcast SetJoin object to the specified type. Parameters: join - SetJoin object type - type to be downcast to Returns: SetJoin object of the specified type. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.CriteriaBuilder.treat(ListJoin,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder ListJoin treat ( ListJoin join , Class type ) Downcast ListJoin object to the specified type. Parameters: join - ListJoin object type - type to be downcast to Returns: ListJoin object of the specified type. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.CriteriaBuilder.treat(MapJoin,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder MapJoin treat ( MapJoin join , Class type ) Downcast MapJoin object to the specified type. Parameters: join - MapJoin object type - type to be downcast to Returns: MapJoin object of the specified type. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.CriteriaBuilder.treat(Path,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Path treat ( Path path , Class type ) Downcast Path object to the specified type. Parameters: path - path type - type to be downcast to Returns: Path object of the specified type. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.CriteriaBuilder.treat(Root,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder Root treat ( Root root , Class type ) Downcast Root object to the specified type. Parameters: type - type to be downcast to root - root Returns: Root object of the specified type. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.metamodel.Metamodel.entity(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.Metamodel EntityType entity ( Class cls ) Return the metamodel entity type representing the entity. Parameters: cls - the type of the represented entity Returns: the metamodel entity type. Throws | |
jakarta.persistence.NamedQueries.classNo JavaDoc Info for jakarta.persistence.NamedQueries/ class | |
jakarta.persistence.criteria.CriteriaBuilder.createQuery(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder CriteriaQuery createQuery ( Class resultClass ) Create a CriteriaQuery object with the given result type. Parameters: resultClass - type of the query result Returns: criteria query object. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.criteria.CommonAbstractCriteria.subquery(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CommonAbstractCriteria Subquery subquery ( Class type ) Create a subquery of the query. Parameters: type - the subquery result type Returns: subquery. Since: Jakarta Persistence (JPA) 1.0 | |
jakarta.persistence.NamedStoredProcedureQueries.classNo JavaDoc Info for jakarta.persistence.NamedStoredProcedureQueries/ class | |
jakarta.persistence.criteria.CriteriaBuilder.createCriteriaUpdate(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder CriteriaUpdate createCriteriaUpdate ( Class targetEntity ) Create a CriteriaUpdate query object to perform a bulk update operation. Parameters: targetEntity - target type for update operation Returns: the query object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.criteria.CriteriaBuilder.createCriteriaDelete(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CriteriaBuilder CriteriaDelete createCriteriaDelete ( Class targetEntity ) Create a CriteriaDelete query object to perform a bulk delete operation. Parameters: targetEntity - target type for delete operation Returns: the query object. Since: Jakarta Persistence (JPA) 2.1 | |
jakarta.persistence.metamodel.IdentifiableType.getDeclaredVersion(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.IdentifiableType SingularAttribute getDeclaredVersion ( Class type ) Return the attribute that corresponds to the version attribute declared by the entity or mapped superclass. Parameters: type - the type | |
jakarta.persistence.metamodel.IdentifiableType.getVersion(Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.IdentifiableType SingularAttribute getVersion ( Class type ) Return the attribute that corresponds to the version attribute of the entity or mapped superclass. Parameters: type - the type of the represented version | |
jakarta.persistence.metamodel.ManagedType.getSingularAttribute(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType SingularAttribute getSingularAttribute ( String name , Class type ) Return the single-valued attribute of the managed type that corresponds to the specified name and Java type. Parameters: name | |
jakarta.persistence.metamodel.ManagedType.getDeclaredSingularAttribute(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType SingularAttribute getDeclaredSingularAttribute ( String name , Class type ) Return the single-valued attribute declared by the managed type that corresponds to the specified name and Java type | |
jakarta.persistence.metamodel.ManagedType.getList(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType ListAttribute getList ( String name , Class elementType ) Return the List-valued attribute of the managed type that corresponds to the specified name and Java element type. Parameters: name | |
jakarta.persistence.metamodel.ManagedType.getDeclaredList(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType ListAttribute getDeclaredList ( String name , Class elementType ) Return the List-valued attribute declared by the managed type that corresponds to the specified name and Java element type | |
jakarta.persistence.metamodel.ManagedType.getCollection(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType CollectionAttribute getCollection ( String name , Class elementType ) Return the Collection-valued attribute of the managed type that corresponds to the specified name and Java element type | |
jakarta.persistence.metamodel.ManagedType.getDeclaredCollection(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType CollectionAttribute getDeclaredCollection ( String name , Class elementType ) Return the Collection-valued attribute declared by the managed type that corresponds to the specified name and Java | |
jakarta.persistence.metamodel.ManagedType.getSet(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType SetAttribute getSet ( String name , Class elementType ) Return the Set-valued attribute of the managed type that corresponds to the specified name and Java element type. Parameters: name | |
jakarta.persistence.metamodel.ManagedType.getDeclaredSet(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.metamodel.ManagedType SetAttribute getDeclaredSet ( String name , Class elementType ) Return the Set-valued attribute declared by the managed type that corresponds to the specified name and Java element type | |
jakarta.persistence.Tuple.get(int,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Tuple X get ( int i , Class type ) Get the value of the element at the specified position in the result tuple. The first position is 0. Parameters: i - position in result tuple type - type of the tuple element | |
jakarta.persistence.Tuple.get(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Tuple X get ( String alias , Class type ) Get the value of the tuple element to which the specified alias has been assigned. Parameters: alias - alias assigned to tuple element type - of the tuple element Returns | |
jakarta.persistence.StoredProcedureQuery.registerStoredProcedureParameter(String,Class,ParameterMode) Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery StoredProcedureQuery registerStoredProcedureParameter ( String parameterName , Class type , ParameterMode mode ) Register a named parameter. Parameters: mode - parameter mode | |
jakarta.persistence.StoredProcedureQuery.registerStoredProcedureParameter(int,Class,ParameterMode) Jakarta Persistence (JPA) Method in jakarta.persistence.StoredProcedureQuery StoredProcedureQuery registerStoredProcedureParameter ( int position , Class type , ParameterMode mode ) Register a positional parameter. All parameters must be registered | |
jakarta.persistence.Converts.classNo JavaDoc Info for jakarta.persistence.Converts/ class | |
jakarta.persistence.AttributeOverrides.classNo JavaDoc Info for jakarta.persistence.AttributeOverrides/ class | |
jakarta.persistence.Graph.addSubgraph(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addSubgraph ( String attributeName , Class type ) Add a node to the graph that corresponds to a managed type with inheritance. This allows for multiple subclass subgraphs to be defined for this node | |
jakarta.persistence.Graph.addTreatedElementSubgraph(PluralAttribute,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addTreatedElementSubgraph ( PluralAttribute attribute , Class type ) Add a node to the graph that corresponds to a collection element that is a managed type. This allows for construction of multi-node | |
jakarta.persistence.Graph.addTreatedSubgraph(Attribute,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addTreatedSubgraph ( Attribute attribute , Class type ) Add a node to the graph that corresponds to a managed type with inheritance. This allows for multiple subclass subgraphs to be defined | |
jakarta.persistence.Graph.addSubgraph(Attribute,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addSubgraph ( Attribute attribute , Class type ) Add a node to the graph that corresponds to a managed type with inheritance. This allows for multiple subclass subgraphs to be defined for this node | |
jakarta.persistence.Graph.addKeySubgraph(Attribute,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addKeySubgraph ( Attribute attribute , Class type ) Add a node to the graph that corresponds to a map key that is a managed type with inheritance. This allows for construction of multi-node entity | |
jakarta.persistence.Graph.addKeySubgraph(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addKeySubgraph ( String attributeName , Class type ) Add a node to the graph that corresponds to a map key that is a managed type with inheritance. This allows for construction of multi-node entity | |
jakarta.persistence.Graph.addElementSubgraph(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addElementSubgraph ( String attributeName , Class type ) Add a node to the graph that corresponds to a collection element that is a managed type. This allows for construction of multi-node entity | |
jakarta.persistence.Graph.addTreatedMapKeySubgraph(MapAttribute,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.Graph Subgraph addTreatedMapKeySubgraph ( MapAttribute attribute , Class type ) Add a node to the graph that corresponds to a map key that is a managed type with inheritance. This allows for construction of multi | |
jakarta.persistence.AttributeConverter.classNo JavaDoc Info for jakarta.persistence.AttributeConverter/ class | |
jakarta.persistence.AssociationOverrides.classNo JavaDoc Info for jakarta.persistence.AssociationOverrides/ class | |
jakarta.persistence.SecondaryTables.classNo JavaDoc Info for jakarta.persistence.SecondaryTables/ class | |
jakarta.persistence.PrimaryKeyJoinColumns.classNo JavaDoc Info for jakarta.persistence.PrimaryKeyJoinColumns/ class | |
jakarta.persistence.PersistenceContexts.classNo JavaDoc Info for jakarta.persistence.PersistenceContexts/ class | |
jakarta.persistence.EntityManager.createNativeQuery(String,Class) Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager Query createNativeQuery ( String sqlString , Class resultClass ) Create an instance of Query for executing a native SQL query. In the next release of this API, the return type of this method will change |