- 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.
- 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.
- 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.
- 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
-
- 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
-
- 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.
- 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.
- 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
-
- 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
-
- 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
-
- 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
-
- 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
- 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.