| Package | Description | 
|---|---|
| javax.persistence | Java Persistence is the API for the management for persistence and object/relational mapping. | 
| Modifier and Type | Method and Description | 
|---|---|
| <T> TypedQuery<T> | EntityManager. createNamedQuery(String name,
                Class<T> resultClass)Create an instance of  TypedQueryfor executing a
 Java Persistence query language named query. | 
| <T> TypedQuery<T> | EntityManager. createQuery(CriteriaQuery<T> criteriaQuery)Create an instance of  TypedQueryfor executing a
 criteria query. | 
| <T> TypedQuery<T> | EntityManager. createQuery(String qlString,
           Class<T> resultClass)Create an instance of  TypedQueryfor executing a
 Java Persistence query language statement. | 
| TypedQuery<X> | TypedQuery. setFirstResult(int startPosition)Set the position of the first result to retrieve. | 
| TypedQuery<X> | TypedQuery. setFlushMode(FlushModeType flushMode)Set the flush mode type to be used for the query execution. | 
| TypedQuery<X> | TypedQuery. setHint(String hintName,
       Object value)Set a query property or hint. | 
| TypedQuery<X> | TypedQuery. setLockMode(LockModeType lockMode)Set the lock mode type to be used for the query execution. | 
| TypedQuery<X> | TypedQuery. setMaxResults(int maxResult)Set the maximum number of results to retrieve. | 
| TypedQuery<X> | TypedQuery. setParameter(int position,
            Calendar value,
            TemporalType temporalType)Bind an instance of  java.util.Calendarto a positional
 parameter. | 
| TypedQuery<X> | TypedQuery. setParameter(int position,
            Date value,
            TemporalType temporalType)Bind an instance of  java.util.Dateto a positional parameter. | 
| TypedQuery<X> | TypedQuery. setParameter(int position,
            Object value)Bind an argument value to a positional parameter. | 
| TypedQuery<X> | TypedQuery. setParameter(Parameter<Calendar> param,
            Calendar value,
            TemporalType temporalType)Bind an instance of  java.util.Calendarto aParameterobject. | 
| TypedQuery<X> | TypedQuery. setParameter(Parameter<Date> param,
            Date value,
            TemporalType temporalType)Bind an instance of  java.util.Dateto aParameterobject. | 
| <T> TypedQuery<X> | TypedQuery. setParameter(Parameter<T> param,
            T value)Bind the value of a  Parameterobject. | 
| TypedQuery<X> | TypedQuery. setParameter(String name,
            Calendar value,
            TemporalType temporalType)Bind an instance of  java.util.Calendarto a named parameter. | 
| TypedQuery<X> | TypedQuery. setParameter(String name,
            Date value,
            TemporalType temporalType)Bind an instance of  java.util.Dateto a named parameter. | 
| TypedQuery<X> | TypedQuery. setParameter(String name,
            Object value)Bind an argument value to a named parameter. | 
Copyright © 2017. All Rights Reserved.