Skip navigation links
A B C D E F G H I J L M N O P Q R S T U V 

A

Access - Annotation Type in javax.persistence
Used to specify an access type to be applied to an entity class, mapped superclass, or embeddable class, or to a specific attribute of such a class.
AccessType - Enum in javax.persistence
Is used with the Access annotation to specify an access type to be applied to an entity class, mapped superclass, or embeddable class, or to a specific attribute of such a class.
AssociationOverride - Annotation Type in javax.persistence
Used to override a mapping for an entity relationship.
AssociationOverrides - Annotation Type in javax.persistence
Used to override mappings of multiple relationship properties or fields.
AttributeConverter<X,Y> - Interface in javax.persistence
A class that implements this interface can be used to convert entity attribute state into database column representation and back again.
AttributeOverride - Annotation Type in javax.persistence
Used to override the mapping of a Basic (whether explicit or default) property or field or Id property or field.
AttributeOverrides - Annotation Type in javax.persistence
Used to override mappings of multiple properties or fields.

B

Basic - Annotation Type in javax.persistence
The simplest type of mapping to a database column.
begin() - Method in interface javax.persistence.EntityTransaction
Start a resource transaction.

C

Cache - Interface in javax.persistence
Interface used to interact with the second-level cache.
Cacheable - Annotation Type in javax.persistence
Specifies whether an entity should be cached if caching is enabled when the value of the persistence.xml caching element is ENABLE_SELECTIVE or DISABLE_SELECTIVE.
CacheRetrieveMode - Enum in javax.persistence
Used as the value of the javax.persistence.cache.retrieveMode property to specify the behavior when data is retrieved by the find methods and by queries.
CacheStoreMode - Enum in javax.persistence
Used as the value of the javax.persistence.cache.storeMode property to specify the behavior when data is read from the database and when data is committed into the database.
CascadeType - Enum in javax.persistence
Defines the set of cascadable operations that are propagated to the associated entity.
CollectionTable - Annotation Type in javax.persistence
Specifies the table that is used for the mapping of collections of basic or embeddable types.
Column - Annotation Type in javax.persistence
Is used to specify the mapped column for a persistent property or field.
ColumnResult - Annotation Type in javax.persistence
References name of a column in the SELECT clause of a SQL query - i.e., column alias, if applicable.
commit() - Method in interface javax.persistence.EntityTransaction
Commit the current resource transaction, writing any unflushed changes to the database.
ConstraintMode - Enum in javax.persistence
Used to control the application of a constraint.
ConstructorResult - Annotation Type in javax.persistence
Used in conjunction with the SqlResultSetMapping annotation to map the SELECT clause of a SQL query to a constructor.
contains(Class, Object) - Method in interface javax.persistence.Cache
Whether the cache contains data for the given entity.
Convert - Annotation Type in javax.persistence
The Convert annotation is used to specify the conversion of a Basic field or property.
Converter - Annotation Type in javax.persistence
 
Converts - Annotation Type in javax.persistence
The Converts annotation is used to group Convert annotations.
convertToDatabaseColumn(X) - Method in interface javax.persistence.AttributeConverter
Converts the value stored in the entity attribute into the data representation to be stored in the database.
convertToEntityAttribute(Y) - Method in interface javax.persistence.AttributeConverter
Converts the data stored in the database column into the value to be stored in the entity attribute.

D

DiscriminatorColumn - Annotation Type in javax.persistence
Specifies the discriminator column for the SINGLE_TABLE and JOINED Inheritance mapping strategies.
DiscriminatorType - Enum in javax.persistence
Defines supported types of the discriminator column.
DiscriminatorValue - Annotation Type in javax.persistence
Specifies the value of the discriminator column for entities of the given type.

E

ElementCollection - Annotation Type in javax.persistence
Defines a collection of instances of a basic type or embeddable class.
Embeddable - Annotation Type in javax.persistence
Defines a class whose instances are stored as an intrinsic part of an owning entity and share the identity of the entity.
Embedded - Annotation Type in javax.persistence
Specifies a persistent field or property of an entity whose value is an instance of an embeddable class.
EmbeddedId - Annotation Type in javax.persistence
Applied to a persistent field or property of an entity class or mapped superclass to denote a composite primary key that is an embeddable class.
Entity - Annotation Type in javax.persistence
Specifies that the class is an entity.
EntityExistsException - Exception in javax.persistence
Thrown by the persistence provider when EntityManager.persist(Object) is called and the entity already exists.
EntityExistsException() - Constructor for exception javax.persistence.EntityExistsException
Constructs a new EntityExistsException exception with null as its detail message.
EntityExistsException(String) - Constructor for exception javax.persistence.EntityExistsException
Constructs a new EntityExistsException exception with the specified detail message.
EntityExistsException(String, Throwable) - Constructor for exception javax.persistence.EntityExistsException
Constructs a new EntityExistsException exception with the specified detail message and cause.
EntityExistsException(Throwable) - Constructor for exception javax.persistence.EntityExistsException
Constructs a new EntityExistsException exception with the specified cause.
EntityListeners - Annotation Type in javax.persistence
Specifies the callback listener classes to be used for an entity or mapped superclass.
EntityNotFoundException - Exception in javax.persistence
Thrown by the persistence provider when an entity reference obtained by EntityManager.getReference is accessed but the entity does not exist.
EntityNotFoundException() - Constructor for exception javax.persistence.EntityNotFoundException
Constructs a new EntityNotFoundException exception with null as its detail message.
EntityNotFoundException(String) - Constructor for exception javax.persistence.EntityNotFoundException
Constructs a new EntityNotFoundException exception with the specified detail message.
EntityResult - Annotation Type in javax.persistence
Used to map the SELECT clause of a SQL query to an entity result.
EntityTransaction - Interface in javax.persistence
Interface used to control transactions on resource-local entity managers.
Enumerated - Annotation Type in javax.persistence
Specifies that a persistent property or field should be persisted as a enumerated type.
EnumType - Enum in javax.persistence
Defines mapping for enumerated types.
evict(Class, Object) - Method in interface javax.persistence.Cache
Remove the data for the given entity from the cache.
evict(Class) - Method in interface javax.persistence.Cache
Remove the data for entities of the specified class (and its subclasses) from the cache.
evictAll() - Method in interface javax.persistence.Cache
Clear the cache.
ExcludeDefaultListeners - Annotation Type in javax.persistence
Specifies that the invocation of default listeners is to be excluded for the entity class (or mapped superclass) and its subclasses.
ExcludeSuperclassListeners - Annotation Type in javax.persistence
Specifies that the invocation of superclass listeners is to be excluded for the entity class (or mapped superclass) and its subclasses.
execute() - Method in interface javax.persistence.StoredProcedureQuery
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.
executeUpdate() - Method in interface javax.persistence.Query
Execute an update or delete statement.

F

FetchType - Enum in javax.persistence
Defines strategies for fetching data from the database.
FieldResult - Annotation Type in javax.persistence
Is used to map the columns specified in the SELECT list of the query to the properties or fields of the entity class.
FlushModeType - Enum in javax.persistence
Flush mode setting.
ForeignKey - Annotation Type in javax.persistence
The ForeignKey annotation is used in schema generation.

G

GeneratedValue - Annotation Type in javax.persistence
Provides for the specification of generation strategies for the values of primary keys.
GenerationType - Enum in javax.persistence
Defines the types of primary key generation strategies.
get(TupleElement<X>) - Method in interface javax.persistence.Tuple
Get the value of the specified tuple element.
get(String, Class<X>) - Method in interface javax.persistence.Tuple
Get the value of the tuple element to which the specified alias has been assigned.
get(String) - Method in interface javax.persistence.Tuple
Get the value of the tuple element to which the specified alias has been assigned.
get(int, Class<X>) - Method in interface javax.persistence.Tuple
Get the value of the element at the specified position in the result tuple.
get(int) - Method in interface javax.persistence.Tuple
Get the value of the element at the specified position in the result tuple.
getAlias() - Method in interface javax.persistence.TupleElement
Return the alias assigned to the tuple element or null, if no alias has been assigned.
getElements() - Method in interface javax.persistence.Tuple
Return the tuple elements.
getEntity() - Method in exception javax.persistence.OptimisticLockException
Returns the entity that caused this exception.
getEntity() - Method in exception javax.persistence.PessimisticLockException
Returns the entity that caused this exception.
getFirstResult() - Method in interface javax.persistence.Query
The position of the first result the query object was set to retrieve.
getFlushMode() - Method in interface javax.persistence.Query
Get the flush mode in effect for the query execution.
getHints() - Method in interface javax.persistence.Query
Get the properties and hints and associated values that are in effect for the query instance.
getIdentifier(Object) - Method in interface javax.persistence.PersistenceUnitUtil
Return the id of the entity.
getJavaType() - Method in interface javax.persistence.TupleElement
Return the Java type of the tuple element.
getLockMode() - Method in interface javax.persistence.Query
Get the current lock mode for the query.
getMaxResults() - Method in interface javax.persistence.Query
The maximum number of results the query object was set to retrieve.
getName() - Method in interface javax.persistence.Parameter
Return the parameter name, or null if the parameter is not a named parameter or no name has been assigned.
getObject() - Method in exception javax.persistence.LockTimeoutException
Returns the object that caused this exception.
getOutputParameterValue(int) - Method in interface javax.persistence.StoredProcedureQuery
Retrieve a value passed back from the procedure through an INOUT or OUT parameter.
getOutputParameterValue(String) - Method in interface javax.persistence.StoredProcedureQuery
Retrieve a value passed back from the procedure through an INOUT or OUT parameter.
getParameter(String) - Method in interface javax.persistence.Query
Get the parameter object corresponding to the declared parameter of the given name.
getParameter(String, Class<T>) - Method in interface javax.persistence.Query
Get the parameter object corresponding to the declared parameter of the given name and type.
getParameter(int) - Method in interface javax.persistence.Query
Get the parameter object corresponding to the declared positional parameter with the given position.
getParameter(int, Class<T>) - Method in interface javax.persistence.Query
Get the parameter object corresponding to the declared positional parameter with the given position and type.
getParameters() - Method in interface javax.persistence.Query
Get the parameter objects corresponding to the declared parameters of the query.
getParameterType() - Method in interface javax.persistence.Parameter
Return the Java type of the parameter.
getParameterValue(Parameter<T>) - Method in interface javax.persistence.Query
Return the value bound to the parameter.
getParameterValue(String) - Method in interface javax.persistence.Query
Return the value bound to the named parameter.
getParameterValue(int) - Method in interface javax.persistence.Query
Return the value bound to the positional parameter.
getPosition() - Method in interface javax.persistence.Parameter
Return the parameter position, or null if the parameter is not a positional parameter.
getQuery() - Method in exception javax.persistence.QueryTimeoutException
Returns the query that caused this exception.
getResultList() - Method in interface javax.persistence.Query
Execute a SELECT query and return the query results as an untyped List.
getResultList() - Method in interface javax.persistence.TypedQuery
Execute a SELECT query and return the query results as a typed List.
getRollbackOnly() - Method in interface javax.persistence.EntityTransaction
Determine whether the current resource transaction has been marked for rollback.
getSingleResult() - Method in interface javax.persistence.Query
Execute a SELECT query that returns a single untyped result.
getSingleResult() - Method in interface javax.persistence.TypedQuery
Execute a SELECT query that returns a single result.
getUpdateCount() - Method in interface javax.persistence.StoredProcedureQuery
Return the update count or -1 if there is no pending result or if the next result is not an update count.

H

hasMoreResults() - Method in interface javax.persistence.StoredProcedureQuery
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.

I

Id - Annotation Type in javax.persistence
Specifies the primary key of an entity.
IdClass - Annotation Type in javax.persistence
Specifies a composite primary key class that is mapped to multiple fields or properties of the entity.
Index - Annotation Type in javax.persistence
The Index annotation is used in schema generation.
Inheritance - Annotation Type in javax.persistence
Defines the inheritance strategy to be used for an entity class hierarchy.
InheritanceType - Enum in javax.persistence
Defines inheritance strategy options.
isActive() - Method in interface javax.persistence.EntityTransaction
Indicate whether a resource transaction is in progress.
isBound(Parameter<?>) - Method in interface javax.persistence.Query
Return a boolean indicating whether a value has been bound to the parameter.
isLoaded(Object, String) - Method in interface javax.persistence.PersistenceUnitUtil
Determine the load state of a given persistent attribute of an entity belonging to the persistence unit.
isLoaded(Object) - Method in interface javax.persistence.PersistenceUnitUtil
Determine the load state of an entity belonging to the persistence unit.
isLoaded(Object, String) - Method in interface javax.persistence.PersistenceUtil
Determine the load state of a given persistent attribute.
isLoaded(Object) - Method in interface javax.persistence.PersistenceUtil
Determine the load state of an entity.

J

javax.persistence - package javax.persistence
 
JoinColumn - Annotation Type in javax.persistence
Specifies a column for joining an entity association or element collection.
JoinColumns - Annotation Type in javax.persistence
Defines mapping for composite foreign keys.
JoinTable - Annotation Type in javax.persistence
Used in the mapping of associations.

L

Lob - Annotation Type in javax.persistence
Specifies that a persistent property or field should be persisted as a large object to a database-supported large object type.
LockModeType - Enum in javax.persistence
Lock modes can be specified by means of passing a LockModeType argument to one of the javax.persistence.EntityManager methods that take locks (lock, find, or refresh) or to the Query.setLockMode() or TypedQuery.setLockMode() method.
LockTimeoutException - Exception in javax.persistence
Thrown by the persistence provider when an pessimistic locking conflict occurs that does not result in transaction rollback.
LockTimeoutException() - Constructor for exception javax.persistence.LockTimeoutException
Constructs a new LockTimeoutException exception with null as its detail message.
LockTimeoutException(String) - Constructor for exception javax.persistence.LockTimeoutException
Constructs a new LockTimeoutException exception with the specified detail message.
LockTimeoutException(String, Throwable) - Constructor for exception javax.persistence.LockTimeoutException
Constructs a new LockTimeoutException exception with the specified detail message and cause.
LockTimeoutException(Throwable) - Constructor for exception javax.persistence.LockTimeoutException
Constructs a new LockTimeoutException exception with the specified cause.
LockTimeoutException(Object) - Constructor for exception javax.persistence.LockTimeoutException
Constructs a new LockTimeoutException exception with the specified object.
LockTimeoutException(String, Throwable, Object) - Constructor for exception javax.persistence.LockTimeoutException
Constructs a new LockTimeoutException exception with the specified detail message, cause, and entity.

M

ManyToMany - Annotation Type in javax.persistence
Defines a many-valued association with many-to-many multiplicity.
ManyToOne - Annotation Type in javax.persistence
Defines a single-valued association to another entity class that has many-to-one multiplicity.
MapKey - Annotation Type in javax.persistence
Specifies the map key for associations of type java.util.Map when the map key is itself the primary key or a persistent field or property of the entity that is the value of the map.
MapKeyClass - Annotation Type in javax.persistence
Specifies the type of the map key for associations of type java.util.Map.
MapKeyColumn - Annotation Type in javax.persistence
Specifies the mapping for the key column of a map whose map key is a basic type.
MapKeyEnumerated - Annotation Type in javax.persistence
Specifies the enum type for a map key whose basic type is an enumerated type.
MapKeyJoinColumn - Annotation Type in javax.persistence
Specifies a mapping to an entity that is a map key.
MapKeyJoinColumns - Annotation Type in javax.persistence
Supports composite map keys that reference entities.
MapKeyTemporal - Annotation Type in javax.persistence
This annotation must be specified for persistent map keys of type Date and Calendar.
MappedSuperclass - Annotation Type in javax.persistence
Designates a class whose mapping information is applied to the entities that inherit from it.
MapsId - Annotation Type in javax.persistence
Designates a ManyToOne or OneToOne relationship attribute that provides the mapping for an EmbeddedId primary key, an attribute within an EmbeddedId primary key, or a simple primary key of the parent entity.

N

NamedAttributeNode - Annotation Type in javax.persistence
The NamedAttributeNode annotation is used to specify an attribute node of within an entity graph or subgraph.
NamedEntityGraph - Annotation Type in javax.persistence
The NamedEntityGraph annotation is used to define a named entity graph.
NamedEntityGraphs - Annotation Type in javax.persistence
The NamedEntityGraphs annotation is used to specify multiple named entity graphs for the entity to which it is applied.
NamedNativeQueries - Annotation Type in javax.persistence
Used to specify multiple native SQL named queries.
NamedNativeQuery - Annotation Type in javax.persistence
Specifies a named native SQL query.
NamedQueries - Annotation Type in javax.persistence
Specifies multiple named Java Persistence query language queries.
NamedQuery - Annotation Type in javax.persistence
Specifies a static, named query in the Java Persistence query language.
NamedStoredProcedureQueries - Annotation Type in javax.persistence
Specifies multiple named stored procedure queries.
NamedStoredProcedureQuery - Annotation Type in javax.persistence
Specifies and names a stored procedure, its parameters, and its result type.
NamedSubgraph - Annotation Type in javax.persistence
The NamedSubgraph annotation is used to further define an attribute node.
NonUniqueResultException - Exception in javax.persistence
Thrown by the persistence provider when Query.getSingleResult() or TypedQuery.getSingleResult() is executed on a query and there is more than one result from the query.
NonUniqueResultException() - Constructor for exception javax.persistence.NonUniqueResultException
Constructs a new NonUniqueResultException exception with null as its detail message.
NonUniqueResultException(String) - Constructor for exception javax.persistence.NonUniqueResultException
Constructs a new NonUniqueResultException exception with the specified detail message.
NoResultException - Exception in javax.persistence
Thrown by the persistence provider when Query.getSingleResult() or TypedQuery.getSingleResult()is executed on a query and there is no result to return.
NoResultException() - Constructor for exception javax.persistence.NoResultException
Constructs a new NoResultException exception with null as its detail message.
NoResultException(String) - Constructor for exception javax.persistence.NoResultException
Constructs a new NoResultException exception with the specified detail message.

O

OneToMany - Annotation Type in javax.persistence
Defines a many-valued association with one-to-many multiplicity.
OneToOne - Annotation Type in javax.persistence
Defines a single-valued association to another entity that has one-to-one multiplicity.
OptimisticLockException - Exception in javax.persistence
Thrown by the persistence provider when an optimistic locking conflict occurs.
OptimisticLockException() - Constructor for exception javax.persistence.OptimisticLockException
Constructs a new OptimisticLockException exception with null as its detail message.
OptimisticLockException(String) - Constructor for exception javax.persistence.OptimisticLockException
Constructs a new OptimisticLockException exception with the specified detail message.
OptimisticLockException(String, Throwable) - Constructor for exception javax.persistence.OptimisticLockException
Constructs a new OptimisticLockException exception with the specified detail message and cause.
OptimisticLockException(Throwable) - Constructor for exception javax.persistence.OptimisticLockException
Constructs a new OptimisticLockException exception with the specified cause.
OptimisticLockException(Object) - Constructor for exception javax.persistence.OptimisticLockException
Constructs a new OptimisticLockException exception with the specified entity.
OptimisticLockException(String, Throwable, Object) - Constructor for exception javax.persistence.OptimisticLockException
Constructs a new OptimisticLockException exception with the specified detail message, cause, and entity.
OrderBy - Annotation Type in javax.persistence
Specifies the ordering of the elements of a collection valued association or element collection at the point when the association or collection is retrieved.
OrderColumn - Annotation Type in javax.persistence
Specifies a column that is used to maintain the persistent order of a list.

P

Parameter<T> - Interface in javax.persistence
Type for query parameter objects.
ParameterMode - Enum in javax.persistence
Specifies the mode of a parameter of a stored procedure query.
PersistenceContext - Annotation Type in javax.persistence
Expresses a dependency on a container-managed EntityManager and its associated persistence context.
PersistenceContexts - Annotation Type in javax.persistence
Declares one or more PersistenceContext annotations.
PersistenceContextType - Enum in javax.persistence
Specifies whether a transaction-scoped or extended persistence context is to be used in PersistenceContext.
PersistenceException - Exception in javax.persistence
Thrown by the persistence provider when a problem occurs.
PersistenceException() - Constructor for exception javax.persistence.PersistenceException
Constructs a new PersistenceException exception with null as its detail message.
PersistenceException(String) - Constructor for exception javax.persistence.PersistenceException
Constructs a new PersistenceException exception with the specified detail message.
PersistenceException(String, Throwable) - Constructor for exception javax.persistence.PersistenceException
Constructs a new PersistenceException exception with the specified detail message and cause.
PersistenceException(Throwable) - Constructor for exception javax.persistence.PersistenceException
Constructs a new PersistenceException exception with the specified cause.
PersistenceProperty - Annotation Type in javax.persistence
Describes a single container or persistence provider property.
PersistenceUnit - Annotation Type in javax.persistence
Expresses a dependency on an EntityManagerFactory and its associated persistence unit.
PersistenceUnits - Annotation Type in javax.persistence
Declares one or more PersistenceUnit annotations.
PersistenceUnitUtil - Interface in javax.persistence
Utility interface between the application and the persistence provider managing the persistence unit.
PersistenceUtil - Interface in javax.persistence
Utility interface between the application and the persistence provider(s).
PessimisticLockException - Exception in javax.persistence
Thrown by the persistence provider when an pessimistic locking conflict occurs.
PessimisticLockException() - Constructor for exception javax.persistence.PessimisticLockException
Constructs a new PessimisticLockException exception with null as its detail message.
PessimisticLockException(String) - Constructor for exception javax.persistence.PessimisticLockException
Constructs a new PessimisticLockException exception with the specified detail message.
PessimisticLockException(String, Throwable) - Constructor for exception javax.persistence.PessimisticLockException
Constructs a new PessimisticLockException exception with the specified detail message and cause.
PessimisticLockException(Throwable) - Constructor for exception javax.persistence.PessimisticLockException
Constructs a new PessimisticLockException exception with the specified cause.
PessimisticLockException(Object) - Constructor for exception javax.persistence.PessimisticLockException
Constructs a new PessimisticLockException exception with the specified entity.
PessimisticLockException(String, Throwable, Object) - Constructor for exception javax.persistence.PessimisticLockException
Constructs a new PessimisticLockException exception with the specified detail message, cause, and entity.
PessimisticLockScope - Enum in javax.persistence
Defines the values of the javax.persistence.lock.scope property for pessimistic locking.
PostLoad - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PostPersist - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PostRemove - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PostUpdate - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PrePersist - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PreRemove - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PreUpdate - Annotation Type in javax.persistence
Is used to specify callback methods for the corresponding lifecycle event.
PrimaryKeyJoinColumn - Annotation Type in javax.persistence
Specifies a primary key column that is used as a foreign key to join to another table.
PrimaryKeyJoinColumns - Annotation Type in javax.persistence
Groups PrimaryKeyJoinColumn annotations.

Q

Query - Interface in javax.persistence
Interface used to control query execution.
QueryHint - Annotation Type in javax.persistence
Used to supply a query property or hint to the NamedQuery or NamedNativeQuery annotation.
QueryTimeoutException - Exception in javax.persistence
Thrown by the persistence provider when a query times out and only the statement is rolled back.
QueryTimeoutException() - Constructor for exception javax.persistence.QueryTimeoutException
Constructs a new QueryTimeoutException exception with null as its detail message.
QueryTimeoutException(String) - Constructor for exception javax.persistence.QueryTimeoutException
Constructs a new QueryTimeoutException exception with the specified detail message.
QueryTimeoutException(String, Throwable) - Constructor for exception javax.persistence.QueryTimeoutException
Constructs a new QueryTimeoutException exception with the specified detail message and cause.
QueryTimeoutException(Throwable) - Constructor for exception javax.persistence.QueryTimeoutException
Constructs a new QueryTimeoutException exception with the specified cause.
QueryTimeoutException(Query) - Constructor for exception javax.persistence.QueryTimeoutException
Constructs a new QueryTimeoutException exception with the specified query.
QueryTimeoutException(String, Throwable, Query) - Constructor for exception javax.persistence.QueryTimeoutException
Constructs a new QueryTimeoutException exception with the specified detail message, cause, and query.

R

registerStoredProcedureParameter(int, Class, ParameterMode) - Method in interface javax.persistence.StoredProcedureQuery
Register a positional parameter.
registerStoredProcedureParameter(String, Class, ParameterMode) - Method in interface javax.persistence.StoredProcedureQuery
Register a named parameter.
rollback() - Method in interface javax.persistence.EntityTransaction
Roll back the current resource transaction.
RollbackException - Exception in javax.persistence
Thrown by the persistence provider when EntityTransaction.commit() fails.
RollbackException() - Constructor for exception javax.persistence.RollbackException
Constructs a new RollbackException exception with null as its detail message.
RollbackException(String) - Constructor for exception javax.persistence.RollbackException
Constructs a new RollbackException exception with the specified detail message.
RollbackException(String, Throwable) - Constructor for exception javax.persistence.RollbackException
Constructs a new RollbackException exception with the specified detail message and cause.
RollbackException(Throwable) - Constructor for exception javax.persistence.RollbackException
Constructs a new RollbackException exception with the specified cause.

S

SecondaryTable - Annotation Type in javax.persistence
Specifies a secondary table for the annotated entity class.
SecondaryTables - Annotation Type in javax.persistence
Specifies multiple secondary tables for an entity.
SequenceGenerator - Annotation Type in javax.persistence
Defines a primary key generator that may be referenced by name when a generator element is specified for the GeneratedValue annotation.
setFirstResult(int) - Method in interface javax.persistence.Query
Set the position of the first result to retrieve.
setFirstResult(int) - Method in interface javax.persistence.TypedQuery
Set the position of the first result to retrieve.
setFlushMode(FlushModeType) - Method in interface javax.persistence.Query
Set the flush mode type to be used for the query execution.
setFlushMode(FlushModeType) - Method in interface javax.persistence.StoredProcedureQuery
Set the flush mode type to be used for the query execution.
setFlushMode(FlushModeType) - Method in interface javax.persistence.TypedQuery
Set the flush mode type to be used for the query execution.
setHint(String, Object) - Method in interface javax.persistence.Query
Set a query property or hint.
setHint(String, Object) - Method in interface javax.persistence.StoredProcedureQuery
Set a query property or hint.
setHint(String, Object) - Method in interface javax.persistence.TypedQuery
Set a query property or hint.
setLockMode(LockModeType) - Method in interface javax.persistence.Query
Set the lock mode type to be used for the query execution.
setLockMode(LockModeType) - Method in interface javax.persistence.TypedQuery
Set the lock mode type to be used for the query execution.
setMaxResults(int) - Method in interface javax.persistence.Query
Set the maximum number of results to retrieve.
setMaxResults(int) - Method in interface javax.persistence.TypedQuery
Set the maximum number of results to retrieve.
setParameter(Parameter<T>, T) - Method in interface javax.persistence.Query
Bind the value of a Parameter object.
setParameter(Parameter<Calendar>, Calendar, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Calendar to a Parameter object.
setParameter(Parameter<Date>, Date, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Date to a Parameter object.
setParameter(String, Object) - Method in interface javax.persistence.Query
Bind an argument to a named parameter.
setParameter(String, Calendar, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Calendar to a named parameter.
setParameter(String, Date, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Date to a named parameter.
setParameter(int, Object) - Method in interface javax.persistence.Query
Bind an argument to a positional parameter.
setParameter(int, Calendar, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Calendar to a positional parameter.
setParameter(int, Date, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Date to a positional parameter.
setParameter(Parameter<T>, T) - Method in interface javax.persistence.StoredProcedureQuery
Bind the value of a Parameter object.
setParameter(Parameter<Calendar>, Calendar, TemporalType) - Method in interface javax.persistence.StoredProcedureQuery
Bind an instance of java.util.Calendar to a Parameter object.
setParameter(Parameter<Date>, Date, TemporalType) - Method in interface javax.persistence.StoredProcedureQuery
Bind an instance of java.util.Date to a Parameter object.
setParameter(String, Object) - Method in interface javax.persistence.StoredProcedureQuery
Bind an argument to a named parameter.
setParameter(String, Calendar, TemporalType) - Method in interface javax.persistence.StoredProcedureQuery
Bind an instance of java.util.Calendar to a named parameter.
setParameter(String, Date, TemporalType) - Method in interface javax.persistence.StoredProcedureQuery
Bind an instance of java.util.Date to a named parameter.
setParameter(int, Object) - Method in interface javax.persistence.StoredProcedureQuery
Bind an argument to a positional parameter.
setParameter(int, Calendar, TemporalType) - Method in interface javax.persistence.StoredProcedureQuery
Bind an instance of java.util.Calendar to a positional parameter.
setParameter(int, Date, TemporalType) - Method in interface javax.persistence.StoredProcedureQuery
Bind an instance of java.util.Date to a positional parameter.
setParameter(Parameter<T>, T) - Method in interface javax.persistence.TypedQuery
Bind the value of a Parameter object.
setParameter(Parameter<Calendar>, Calendar, TemporalType) - Method in interface javax.persistence.TypedQuery
Bind an instance of java.util.Calendar to a Parameter object.
setParameter(Parameter<Date>, Date, TemporalType) - Method in interface javax.persistence.TypedQuery
Bind an instance of java.util.Date to a Parameter object.
setParameter(String, Object) - Method in interface javax.persistence.TypedQuery
Bind an argument to a named parameter.
setParameter(String, Calendar, TemporalType) - Method in interface javax.persistence.TypedQuery
Bind an instance of java.util.Calendar to a named parameter.
setParameter(String, Date, TemporalType) - Method in interface javax.persistence.TypedQuery
Bind an instance of java.util.Date to a named parameter.
setParameter(int, Object) - Method in interface javax.persistence.TypedQuery
Bind an argument to a positional parameter.
setParameter(int, Calendar, TemporalType) - Method in interface javax.persistence.TypedQuery
Bind an instance of java.util.Calendar to a positional parameter.
setParameter(int, Date, TemporalType) - Method in interface javax.persistence.TypedQuery
Bind an instance of java.util.Date to a positional parameter.
setRollbackOnly() - Method in interface javax.persistence.EntityTransaction
Mark the current resource transaction so that the only possible outcome of the transaction is for the transaction to be rolled back.
SharedCacheMode - Enum in javax.persistence
Specifies how the provider must use a second-level cache for the persistence unit.
SqlResultSetMapping - Annotation Type in javax.persistence
Specifies the mapping of the result of a native SQL query.
SqlResultSetMappings - Annotation Type in javax.persistence
Is used to define one or more SqlResultSetMapping annotations.
StoredProcedureParameter - Annotation Type in javax.persistence
Specifies a parameter of a named stored procedure query.
StoredProcedureQuery - Interface in javax.persistence
Interface used to control stored procedure query execution.
SynchronizationType - Enum in javax.persistence
Describes how a persistence context will be synchronized to the database in sync with JTA transactions

T

Table - Annotation Type in javax.persistence
Specifies the primary table for the annotated entity.
TableGenerator - Annotation Type in javax.persistence
Defines a primary key generator that may be referenced by name when a generator element is specified for the GeneratedValue annotation.
Temporal - Annotation Type in javax.persistence
This annotation must be specified for persistent fields or properties of type java.util.Date and java.util.Calendar.
TemporalType - Enum in javax.persistence
Type used to indicate a specific mapping of java.util.Date or java.util.Calendar.
toArray() - Method in interface javax.persistence.Tuple
Return the values of the result tuple elements as an array.
TransactionRequiredException - Exception in javax.persistence
Thrown by the persistence provider when a transaction is required but is not active.
TransactionRequiredException() - Constructor for exception javax.persistence.TransactionRequiredException
Constructs a new TransactionRequiredException exception with null as its detail message.
TransactionRequiredException(String) - Constructor for exception javax.persistence.TransactionRequiredException
Constructs a new TransactionRequiredException exception with the specified detail message.
Transient - Annotation Type in javax.persistence
Specifies that the property or field is not persistent.
Tuple - Interface in javax.persistence
Interface for extracting the elements of a query result tuple.
TupleElement<X> - Interface in javax.persistence
The TupleElement interface defines an element that is returned in a query result tuple.
TypedQuery<X> - Interface in javax.persistence
Interface used to control the execution of typed queries.

U

UniqueConstraint - Annotation Type in javax.persistence
Specifies that a unique constraint is to be included in the generated DDL for a primary or secondary table.
unwrap(Class<T>) - Method in interface javax.persistence.Cache
Return an object of the specified type to allow access to the provider-specific API.
unwrap(Class<T>) - Method in interface javax.persistence.Query
Return an object of the specified type to allow access to the provider-specific API.

V

ValidationMode - Enum in javax.persistence
The validation mode to be used by the provider for the persistence unit.
valueOf(String) - Static method in enum javax.persistence.AccessType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.CacheRetrieveMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.CacheStoreMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.CascadeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.ConstraintMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.DiscriminatorType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.EnumType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.FetchType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.FlushModeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.GenerationType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.InheritanceType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.LockModeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.ParameterMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.PersistenceContextType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.PessimisticLockScope
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.SharedCacheMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.SynchronizationType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.TemporalType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.ValidationMode
Returns the enum constant of this type with the specified name.
values() - Static method in enum javax.persistence.AccessType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.CacheRetrieveMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.CacheStoreMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.CascadeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.ConstraintMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.DiscriminatorType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.EnumType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.FetchType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.FlushModeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.GenerationType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.InheritanceType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.LockModeType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.ParameterMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.PersistenceContextType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.PessimisticLockScope
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.SharedCacheMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.SynchronizationType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.TemporalType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.ValidationMode
Returns an array containing the constants of this enum type, in the order they are declared.
Version - Annotation Type in javax.persistence
Specifies the version field or property of an entity class that serves as its optimistic lock value.
A B C D E F G H I J L M N O P Q R S T U V 
Skip navigation links

Copyright © 2016. All rights reserved.