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

A

addTransformer(ClassTransformer) - Method in interface javax.persistence.spi.PersistenceUnitInfo
Add a transformer supplied by the provider that will be called for every new class definition or class redefinition that gets loaded by the loader returned by the PersistenceInfo.getClassLoader method.
AssociationOverride - Annotation Type in javax.persistence
The AssociationOverride annotation is used to override a many-to-one or one-to-one mapping of property or field for an entity relationship.
The AssociationOverride annotation may be applied to an entity that extends a mapped superclass to override a many-to-one or one-to-one mapping defined by the mapped superclass.
AssociationOverrides - Annotation Type in javax.persistence
The mappings of multiple many-to-one or one-to-one relationship properties or fields may be overridden.
AttributeOverride - Annotation Type in javax.persistence
The AttributeOverride annotation is used to override the mapping of a Basic (whether explicit or default) property or field or Id property or field.
The AttributeOverride annotation may be applied to an entity that extends a mapped superclass or to an embedded field or property to override a basic mapping defined by the mapped superclass or embeddable class.
AttributeOverrides - Annotation Type in javax.persistence
The mappings of multiple properties or fields may be overridden.

B

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

C

CascadeType - Enum in javax.persistence
List of operations that are cascadable.
ClassTransformer - Interface in javax.persistence.spi
A persistence provider supplies an instance of this interface to the PersistenceUnitInfo.addTransformer method.
The supplied transformer instance will get called to transform entity class files when they are loaded or redefined.
clear() - Method in interface javax.persistence.EntityManager
Clear the persistence context, causing all managed entities to become detached.
close() - Method in interface javax.persistence.EntityManager
Close an application-managed EntityManager.
close() - Method in interface javax.persistence.EntityManagerFactory
Close the factory, releasing any resources that it holds.
Column - Annotation Type in javax.persistence
The Column annotation is used to specify a mapped column for a persistent property or field.
ColumnResult - Annotation Type in javax.persistence
Mapping of a result.
commit() - Method in interface javax.persistence.EntityTransaction
Commit the current transaction, writing any unflushed changes to the database.
contains(Object) - Method in interface javax.persistence.EntityManager
Check if the instance belongs to the current persistence context.
createContainerEntityManagerFactory(PersistenceUnitInfo, Map) - Method in interface javax.persistence.spi.PersistenceProvider
Called by the container when an EntityManagerFactory is to be created.
createEntityManager() - Method in interface javax.persistence.EntityManagerFactory
Create a new EntityManager.
createEntityManager(Map) - Method in interface javax.persistence.EntityManagerFactory
Create a new EntityManager with the specified Map of properties.
createEntityManagerFactory(String) - Static method in class javax.persistence.Persistence
Create and return an EntityManagerFactory for the named persistence unit.
createEntityManagerFactory(String, Map) - Static method in class javax.persistence.Persistence
Create and return an EntityManagerFactory for the named persistence unit using the given properties.
createEntityManagerFactory(String, Map) - Method in interface javax.persistence.spi.PersistenceProvider
Called by Persistence class when an EntityManagerFactory is to be created.
createNamedQuery(String) - Method in interface javax.persistence.EntityManager
Create an instance of Query for executing a named query (in the Java Persistence query language or in native SQL).
createNativeQuery(String) - Method in interface javax.persistence.EntityManager
Create an instance of Query for executing a native SQL statement, e.g., for update or delete.
createNativeQuery(String, Class) - Method in interface javax.persistence.EntityManager
Create an instance of Query for executing a native SQL query.
createNativeQuery(String, String) - Method in interface javax.persistence.EntityManager
Create an instance of Query for executing a native SQL query.
createQuery(String) - Method in interface javax.persistence.EntityManager
Create an instance of Query for executing a Java Persistence query language statement.

D

DiscriminatorColumn - Annotation Type in javax.persistence
The DiscriminatorColumn annotation can be specified on an entity class (including on an abstract entity class).
If the DiscriminatorColumn annotation is missing, and a discriminator column is required, the name of the discriminator column defaults to "DTYPE" and the discriminator type to STRING.
DiscriminatorType - Enum in javax.persistence
The DiscriminatorType enum defines the different types for DiscriminatorColumn.
DiscriminatorValue - Annotation Type in javax.persistence
The DiscriminatorValue annotation is used to specify the value of the discriminator column for entities of the given type.

E

Embeddable - Annotation Type in javax.persistence
The Embeddable annotation is used to specify 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
The Embedded annotation is used to specify a persistent field or property of an entity whose value is an instance of an embeddable class.
The AttributeOverride and/ or AttributeOverrides annotations may be used to override the column mappings declared within the embeddable class, which are mapped to the entity table.
Implementations are not required to support embedded objects that are mapped across more than one table (e.g., split across primary and secondary tables or multiple secondary tables).
EmbeddedId - Annotation Type in javax.persistence
The EmbeddedId annotation is 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
Class annotated with this annotation is an entity class.
EntityExistsException - Exception in javax.persistence
The EntityExistsException may thrown by the persistence provider when the persist operation is invoked and the entity already exists.
EntityExistsException() - Constructor for exception javax.persistence.EntityExistsException
Default constructor : builds an exception with an empty message.
EntityExistsException(String) - Constructor for exception javax.persistence.EntityExistsException
Build an exception with the given message.
EntityExistsException(Throwable) - Constructor for exception javax.persistence.EntityExistsException
Build an exception with the given exception.
EntityExistsException(String, Throwable) - Constructor for exception javax.persistence.EntityExistsException
Builds an exception with a given message and given exception.
EntityListeners - Annotation Type in javax.persistence
The EntityListeners annotation specifies the callback listener classes to be used for an entity or mapped superclass.
EntityManager - Interface in javax.persistence
Interface used to interact with the persistence context.
EntityManagerFactory - Interface in javax.persistence
Factory of EntityManager.
EntityNotFoundException - Exception in javax.persistence
The EntityNotFoundException is thrown by the persistence provider when an entity reference obtained by getReference is accessed but the entity does not exist.
EntityNotFoundException() - Constructor for exception javax.persistence.EntityNotFoundException
Default constructor : builds an exception with an empty message.
EntityNotFoundException(String) - Constructor for exception javax.persistence.EntityNotFoundException
Build an exception with the given message.
EntityResult - Annotation Type in javax.persistence
Mapping of a result.
EntityTransaction - Interface in javax.persistence
The EntityTransaction interface is used to control resource transactions on resource-local entity managers.
Enumerated - Annotation Type in javax.persistence
An Enumerated annotation specifies that a persistent property or field should be persisted as a enumerated type.
EnumType - Enum in javax.persistence
The EnumType enum defines the mapping for enumerated types.
ExcludeDefaultListeners - Annotation Type in javax.persistence
The ExcludeDefaultListeners annotation 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
The ExcludeSuperclassListeners annotation specifies that the invocation of superclass listeners is to be excluded for the entity class (or mapped superclass) and its subclasses.
excludeUnlistedClasses() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
executeUpdate() - Method in interface javax.persistence.Query
Execute an update or delete statement.

F

FetchType - Enum in javax.persistence
The FetchType enum defines strategies for fetching data from the database.
FieldResult - Annotation Type in javax.persistence
Mapping of a result.
find(Class<T>, Object) - Method in interface javax.persistence.EntityManager
Find by primary key.
flush() - Method in interface javax.persistence.EntityManager
Synchronize the persistence context to the underlying database.
FlushModeType - Enum in javax.persistence
When queries are executed within a transaction, if FlushModeType.AUTO is set on the Query object, or if the flush mode setting for the persistence context is AUTO (the default) and a flush mode setting has not been specified for the Query object, the persistence provider is responsible for ensuring that all updates to the state of all entities in the persistence context which could potentially affect the result of the query are visible to the processing of the query.

G

GeneratedValue - Annotation Type in javax.persistence
The GeneratedValue annotation provides for the specification of generation strategies for the values of primary keys.
GenerationType - Enum in javax.persistence
Enumeration of the types of primary key generation.
getClassLoader() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getDelegate() - Method in interface javax.persistence.EntityManager
 
getEntity() - Method in exception javax.persistence.OptimisticLockException
Gets the entity object.
getFlushMode() - Method in interface javax.persistence.EntityManager
Get the flush mode that applies to all objects contained in the persistence context.
getJarFileUrls() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getJtaDataSource() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getManagedClassNames() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getMappingFileNames() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getNewTempClassLoader() - Method in interface javax.persistence.spi.PersistenceUnitInfo
Return a new instance of a ClassLoader that the provider may use to temporarily load any classes, resources, or open URLs.
getNonJtaDataSource() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getPersistenceProviderClassName() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getPersistenceUnitName() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getPersistenceUnitRootUrl() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getProperties() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 
getReference(Class<T>, Object) - Method in interface javax.persistence.EntityManager
Get an instance, whose state may be lazily fetched.
getResultList() - Method in interface javax.persistence.Query
Execute a SELECT query and return the query results as a List.
getRollbackOnly() - Method in interface javax.persistence.EntityTransaction
Determine whether the current transaction has been marked for rollback.
getSingleResult() - Method in interface javax.persistence.Query
Execute a SELECT query that returns a single result.
getTransaction() - Method in interface javax.persistence.EntityManager
Return the resource-level transaction object.
getTransactionType() - Method in interface javax.persistence.spi.PersistenceUnitInfo
 

I

Id - Annotation Type in javax.persistence
The Id annotation specifies the primary key property or field of an entity.
IdClass - Annotation Type in javax.persistence
The IdClass annotation is applied to an entity class or a mapped superclass to specify a composite primary key class that is mapped to multiple fields or properties of the entity.
The names of the fields or properties in the primary key class and the primary key fields or properties of the entity must correspond and their types must be the same.
Inheritance - Annotation Type in javax.persistence
The JoinTable annotation is used in the mapping of associations.
InheritanceType - Enum in javax.persistence
The InheritanceType enum defines the strategy for mapping used in Inheritance.
isActive() - Method in interface javax.persistence.EntityTransaction
Indicate whether a transaction is in progress.
isOpen() - Method in interface javax.persistence.EntityManager
Determine whether the EntityManager is open.
isOpen() - Method in interface javax.persistence.EntityManagerFactory
Indicates whether the factory is open.

J

javax.persistence - package javax.persistence
API used by EJB 3.0 container
javax.persistence.spi - package javax.persistence.spi
API used by EJB 3.0 container
JoinColumn - Annotation Type in javax.persistence
The JoinColumn annotation is used to specify a mapped column for joining an entity association.
JoinColumns - Annotation Type in javax.persistence
Composite foreign keys are supported by means of the JoinColumns annotation.
JoinTable - Annotation Type in javax.persistence
The JoinTable annotation is used in the mapping of associations.
joinTransaction() - Method in interface javax.persistence.EntityManager
Indicate to the EntityManager that a JTA transaction is active.

L

Lob - Annotation Type in javax.persistence
A Lob annotation specifies that a persistent property or field should be persisted as a large object to a database-supported large object type.
lock(Object, LockModeType) - Method in interface javax.persistence.EntityManager
Set the lock mode for an entity object contained in the persistence context.
LockModeType - Enum in javax.persistence
Lock modes available.

M

ManyToMany - Annotation Type in javax.persistence
A ManyToMany annotation defines a many-valued association with many-to-many multiplicity.
ManyToOne - Annotation Type in javax.persistence
The ManyToOne annotation defines a single-valued association to another entity class that has many-to-one multiplicity.
MapKey - Annotation Type in javax.persistence
The MapKey annotation is used to specify the map key for associations of type java.util.Map.
MappedSuperclass - Annotation Type in javax.persistence
The MappedSuperclass annotation designates a class whose mapping information is applied to the entities that inherit from it.
merge(T) - Method in interface javax.persistence.EntityManager
Merge the state of the given entity into the current persistence context.

N

NamedNativeQueries - Annotation Type in javax.persistence
List of NamedNativeQuery objects.
NamedNativeQuery - Annotation Type in javax.persistence
Used to specify a native SQL named query.
NamedQueries - Annotation Type in javax.persistence
List of NamedQuery objects.
NamedQuery - Annotation Type in javax.persistence
The NamedQuery annotation is used to specify a named query in the Java Persistence query language.
NonUniqueResultException - Exception in javax.persistence
The NonUniqueResultException is thrown by the persistence provider when Query.getSingleResult is invoked and there is more than one result from the query.
NonUniqueResultException() - Constructor for exception javax.persistence.NonUniqueResultException
Default constructor : builds an exception with an empty message.
NonUniqueResultException(String) - Constructor for exception javax.persistence.NonUniqueResultException
Build an exception with the given message.
NoResultException - Exception in javax.persistence
The NoResultException is thrown by the persistence provider when Query.getSingleResult is invoked and there is no result to return.
NoResultException() - Constructor for exception javax.persistence.NoResultException
Default constructor : builds an exception with an empty message.
NoResultException(String) - Constructor for exception javax.persistence.NoResultException
Build an exception with the given message.

O

OneToMany - Annotation Type in javax.persistence
A OneToMany annotation defines a many-valued association with one-to-many multiplicity.
OneToOne - Annotation Type in javax.persistence
The OneToOne annotation defines a single-valued association to another entity that has one-to-one multiplicity.
OptimisticLockException - Exception in javax.persistence
The OptimisticLockException is thrown by the persistence provider when an optimistic locking conflict occurs.
OptimisticLockException() - Constructor for exception javax.persistence.OptimisticLockException
Default constructor : builds an exception with an empty message.
OptimisticLockException(String) - Constructor for exception javax.persistence.OptimisticLockException
Build an exception with the given message.
OptimisticLockException(Throwable) - Constructor for exception javax.persistence.OptimisticLockException
Build an exception with the given exception.
OptimisticLockException(String, Throwable) - Constructor for exception javax.persistence.OptimisticLockException
Builds an exception with a given message and given exception.
OptimisticLockException(Object) - Constructor for exception javax.persistence.OptimisticLockException
Build an exception with the given entity.
OptimisticLockException(String, Throwable, Object) - Constructor for exception javax.persistence.OptimisticLockException
Builds an exception with a given message and given exception.
OrderBy - Annotation Type in javax.persistence
The OrderBy annotation specifies the ordering of the elements of a collection valued association at the point when the association is retrieved.

P

persist(Object) - Method in interface javax.persistence.EntityManager
Make an instance managed and persistent.
Persistence - Class in javax.persistence
Bootstrap class that is used to obtain an EntityManagerFactory.
Persistence() - Constructor for class javax.persistence.Persistence
 
PERSISTENCE_PROVIDER - Static variable in class javax.persistence.Persistence
Persistence Provider property with a typo for its value !
PersistenceContext - Annotation Type in javax.persistence
The PersistenceContext annotation is used to express a dependency on a container-managed entity manager persistence context.
PersistenceContexts - Annotation Type in javax.persistence
List of Persistence Contexts.
PersistenceContextType - Enum in javax.persistence
Enumeration of possible values for PersistenceContext : Transaction scoped or extended.
PersistenceException - Exception in javax.persistence
The PersistenceException is thrown by the persistence provider when a problem occurs.
PersistenceException() - Constructor for exception javax.persistence.PersistenceException
Default constructor : builds an exception with an empty message.
PersistenceException(String) - Constructor for exception javax.persistence.PersistenceException
Build an exception with the given message.
PersistenceException(Throwable) - Constructor for exception javax.persistence.PersistenceException
Build an exception with the given exception.
PersistenceException(String, Throwable) - Constructor for exception javax.persistence.PersistenceException
Builds an exception with a given message and given exception.
PersistenceProperty - Annotation Type in javax.persistence
Property used by Persistence Context.
PersistenceProvider - Interface in javax.persistence.spi
Interface implemented by the persistence provider.
This interface is used to create an EntityManagerFactory.
It is invoked by the container in Java EE environments and by the Persistence class in Java SE environments.
PersistenceUnit - Annotation Type in javax.persistence
The PersistenceUnit annotation is used to express a dependency on an entity manager factory.
PersistenceUnitInfo - Interface in javax.persistence.spi
Interface implemented by the container and used by the persistence provider when creating an EntityManagerFactory.
PersistenceUnits - Annotation Type in javax.persistence
List of Persistence Units.
PersistenceUnitTransactionType - Enum in javax.persistence.spi
The enum javax.persistence.spi.PersistenceUnitTransactionType defines whether the entity managers created by the factory will be JTA or resource-local entity managers.
PostLoad - Annotation Type in javax.persistence
Used to defined the PostLoad callback lifecycle.
PostPersist - Annotation Type in javax.persistence
Used to defined the PostPersist callback lifecycle.
PostRemove - Annotation Type in javax.persistence
Used to defined the PostRemove callback lifecycle.
PostUpdate - Annotation Type in javax.persistence
Used to defined the PostUpdate callback lifecycle.
PrePersist - Annotation Type in javax.persistence
Used to defined the PrePersist callback lifecycle.
PreRemove - Annotation Type in javax.persistence
Used to defined the PreRemove callback lifecycle.
PreUpdate - Annotation Type in javax.persistence
Used to defined the PreUpdate callback lifecycle.
PrimaryKeyJoinColumn - Annotation Type in javax.persistence
The PrimaryKeyJoinColumn annotation specifies a primary key column that is used as a foreign key to join to another table.
The PrimaryKeyJoinColumn annotation is used to join the primary table of an entity subclass in the JOINED mapping strategy to the primary table of its superclass; it is used within a SecondaryTable annotation to join a secondary table to a primary table; and it may be used in a OneToOne mapping in which the primary key of the referencing entity is used as a foreign key to the referenced entity.
PrimaryKeyJoinColumns - Annotation Type in javax.persistence
Composite foreign keys are supported by means of the PrimaryKeyJoinColumns annotation.
providers - Static variable in class javax.persistence.Persistence
Set of persistence providers.

Q

Query - Interface in javax.persistence
Interface used to control query execution.
QueryHint - Annotation Type in javax.persistence
Hint to use for a named query.

R

refresh(Object) - Method in interface javax.persistence.EntityManager
Refresh the state of the instance from the database, overwriting changes made to the entity, if any.
remove(Object) - Method in interface javax.persistence.EntityManager
Remove the entity instance.
rollback() - Method in interface javax.persistence.EntityTransaction
Roll back the current transaction.
RollbackException - Exception in javax.persistence
The RollbackException is thrown by the persistence provider when EntityTransaction.
RollbackException() - Constructor for exception javax.persistence.RollbackException
Default constructor : builds an exception with an empty message.
RollbackException(String) - Constructor for exception javax.persistence.RollbackException
Build an exception with the given message.
RollbackException(Throwable) - Constructor for exception javax.persistence.RollbackException
Build an exception with the given exception.
RollbackException(String, Throwable) - Constructor for exception javax.persistence.RollbackException
Builds an exception with a given message and given exception.

S

SecondaryTable - Annotation Type in javax.persistence
The SecondaryTable annotation is used to specify a secondary table for the annotated entity class.
SecondaryTables - Annotation Type in javax.persistence
The SecondaryTables annotation is used to specify multiple secondary tables for an entity.
SequenceGenerator - Annotation Type in javax.persistence
The SequenceGenerator annotation 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.
setFlushMode(FlushModeType) - Method in interface javax.persistence.EntityManager
Set the flush mode that applies to all objects contained in the persistence context.
setFlushMode(FlushModeType) - Method in interface javax.persistence.Query
Set the flush mode type to be used for the query execution.
setHint(String, Object) - Method in interface javax.persistence.Query
Set an implementation-specific hint.
setMaxResults(int) - Method in interface javax.persistence.Query
Set the maximum number of results to retrieve.
setParameter(String, Object) - Method in interface javax.persistence.Query
Bind an argument 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(String, Calendar, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Calendar to a named parameter.
setParameter(int, Object) - Method in interface javax.persistence.Query
Bind an argument 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(int, Calendar, TemporalType) - Method in interface javax.persistence.Query
Bind an instance of java.util.Calendar to a positional parameter.
setRollbackOnly() - Method in interface javax.persistence.EntityTransaction
Mark the current transaction so that the only possible outcome of the transaction is for the transaction to be rolled back.
SqlResultSetMapping - Annotation Type in javax.persistence
Specifies the mapping of the result of a native SQL query.
SqlResultSetMappings - Annotation Type in javax.persistence
List of SqlResultSetMapping.

T

Table - Annotation Type in javax.persistence
The Table annotation specifies the primary table for the annotated entity.
TableGenerator - Annotation Type in javax.persistence
The TableGenerator annotation 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
The Temporal annotation must be specified for persistent fields or properties of type java.util.Date and java.util.Calendar.
TemporalType - Enum in javax.persistence
The TemporalType enum defines the mapping for these temporal types.
TransactionRequiredException - Exception in javax.persistence
The TransactionRequiredException is thrown by the persistence provider when a transaction is required but is not active.
TransactionRequiredException() - Constructor for exception javax.persistence.TransactionRequiredException
Default constructor : builds an exception with an empty message.
TransactionRequiredException(String) - Constructor for exception javax.persistence.TransactionRequiredException
Build an exception with the given message.
transform(ClassLoader, String, Class<?>, ProtectionDomain, byte[]) - Method in interface javax.persistence.spi.ClassTransformer
Invoked when a class is being loaded or redefined.
Transient - Annotation Type in javax.persistence
The Transient annotation is used to annotate a property or field of an entity class, mapped superclass, or embeddable class.

U

UniqueConstraint - Annotation Type in javax.persistence
The UniqueConstraint annotation is used to specify that a unique constraint is to be included in the generated DDL for a primary or secondary table.

V

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.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.PersistenceContextType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.persistence.spi.PersistenceUnitTransactionType
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.
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.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.PersistenceContextType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javax.persistence.spi.PersistenceUnitTransactionType
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.
Version - Annotation Type in javax.persistence
The Version annotation specifies the version field or property of an entity class that serves as its optimistic lock value.

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

Copyright © 2007-2012 OW2 Consortium. All Rights Reserved.