ObjectDB Database Search

101-150 of 200 results

javax.persistence.GenerationType.AUTO

JPA Enum Constant in javax.persistence.GenerationType AUTO Indicates that the persistence provider should pick an appropriate strategy for the particular database. The AUTO generation strategy may expect a database resource to exist, or it may attempt to create one. A vendor may provide

javax.persistence.InheritanceType.SINGLE_TABLE

JPA Enum Constant in javax.persistence.InheritanceType SINGLE_TABLE A single table per class hierarchy. Since: JPA 1.0

javax.persistence.InheritanceType.TABLE_PER_CLASS

JPA Enum Constant in javax.persistence.InheritanceType TABLE_PER_CLASS A table per concrete entity class. Since: JPA 1.0

javax.persistence.InheritanceType.JOINED

JPA Enum Constant in javax.persistence.InheritanceType JOINED A strategy in which fields that are specific to a subclass are mapped to a separate table than the fields that are common to the parent class, and a join is performed to instantiate the subclass. Since: JPA 1.0

javax.persistence.LockModeType.READ

JPA Enum Constant in javax.persistence.LockModeType READ Synonymous with OPTIMISTIC . OPTIMISTIC is to be preferred for new applications. Since: JPA 1.0

javax.persistence.LockModeType.WRITE

JPA Enum Constant in javax.persistence.LockModeType WRITE Synonymous with OPTIMISTIC_FORCE_INCREMENT . OPTIMISTIC_FORCE_IMCREMENT is to be preferred for new applications. Since: JPA 1.0

javax.persistence.LockModeType.OPTIMISTIC

JPA Enum Constant in javax.persistence.LockModeType OPTIMISTIC Optimistic lock. Since: JPA 2.0

javax.persistence.LockModeType.OPTIMISTIC_FORCE_INCREMENT

JPA Enum Constant in javax.persistence.LockModeType OPTIMISTIC_FORCE_INCREMENT Optimistic lock, with version update. Since: JPA 2.0

javax.persistence.LockModeType.PESSIMISTIC_READ

JPA Enum Constant in javax.persistence.LockModeType PESSIMISTIC_READ Pessimistic read lock. Since: JPA 2.0

javax.persistence.LockModeType.PESSIMISTIC_WRITE

JPA Enum Constant in javax.persistence.LockModeType PESSIMISTIC_WRITE Pessimistic write lock. Since: JPA 2.0

javax.persistence.LockModeType.PESSIMISTIC_FORCE_INCREMENT

JPA Enum Constant in javax.persistence.LockModeType PESSIMISTIC_FORCE_INCREMENT Pessimistic write lock, with version update. Since: JPA 2.0

javax.persistence.LockModeType.NONE

JPA Enum Constant in javax.persistence.LockModeType NONE No lock. Since: JPA 2.0

javax.persistence.MapKeyEnumerated.value

JPA Annotation Attribute in javax.persistence.MapKeyEnumerated EnumType value default ORDINAL (Optional) The type used in mapping a map key enum type. Since: JPA 2.0

javax.persistence.ParameterMode.IN

JPA Enum Constant in javax.persistence.ParameterMode IN Stored procedure input parameter Since: JPA 2.1

javax.persistence.ParameterMode.INOUT

JPA Enum Constant in javax.persistence.ParameterMode INOUT Stored procedure input/output parameter Since: JPA 2.1

javax.persistence.ParameterMode.OUT

JPA Enum Constant in javax.persistence.ParameterMode OUT Stored procedure output parameter Since: JPA 2.1

javax.persistence.ParameterMode.REF_CURSOR

JPA Enum Constant in javax.persistence.ParameterMode REF_CURSOR Stored procedure reference cursor parameter. Some databases use REF_CURSOR parameters to return result sets from stored procedures. Since: JPA 2.1

javax.persistence.PersistenceContextType.TRANSACTION

JPA Enum Constant in javax.persistence.PersistenceContextType TRANSACTION Transaction-scoped persistence context Since: JPA 1.0

javax.persistence.PersistenceContextType.EXTENDED

JPA Enum Constant in javax.persistence.PersistenceContextType EXTENDED Extended persistence context Since: JPA 1.0

javax.persistence.PessimisticLockScope.NORMAL

JPA Enum Constant in javax.persistence.PessimisticLockScope NORMAL This value defines the default behavior for pessimistic locking. The persistence provider must lock the database row(s) that correspond to the non-collection-valued persistent state of that instance. If a joined inheritance

javax.persistence.PessimisticLockScope.EXTENDED

JPA Enum Constant in javax.persistence.PessimisticLockScope EXTENDED In addition to the behavior for PessimisticLockScope.NORMAL , element collections and relationships owned by the entity that are contained in join tables will be locked if the javax.persistence.lock.scope property is specified

javax.persistence.SharedCacheMode.ALL

JPA Enum Constant in javax.persistence.SharedCacheMode ALL All entities and entity-related state and data are cached. Since: JPA 2.0

javax.persistence.SharedCacheMode.NONE

JPA Enum Constant in javax.persistence.SharedCacheMode NONE Caching is disabled for the persistence unit. Since: JPA 2.0

javax.persistence.SharedCacheMode.ENABLE_SELECTIVE

JPA Enum Constant in javax.persistence.SharedCacheMode ENABLE_SELECTIVE Caching is enabled for all entities for Cacheable(true) is specified. All other entities are not cached. Since: JPA 2.0

javax.persistence.SharedCacheMode.DISABLE_SELECTIVE

JPA Enum Constant in javax.persistence.SharedCacheMode DISABLE_SELECTIVE Caching is enabled for all entities except those for which Cacheable(false) is specified. Entities for which Cacheable(false) is specified are not cached. Since: JPA 2.0

javax.persistence.SharedCacheMode.UNSPECIFIED

JPA Enum Constant in javax.persistence.SharedCacheMode UNSPECIFIED Caching behavior is undefined: provider-specific defaults may apply. Since: JPA 2.0

javax.persistence.SynchronizationType.SYNCHRONIZED

JPA Enum Constant in javax.persistence.SynchronizationType SYNCHRONIZED Persistence context is automatically synchronized with the current transaction Since: JPA 2.1

javax.persistence.SynchronizationType.UNSYNCHRONIZED

JPA Enum Constant in javax.persistence.SynchronizationType UNSYNCHRONIZED Persistence context must be explicitly joined to the current transaction Since: JPA 2.1

javax.persistence.TemporalType.DATE

JPA Enum Constant in javax.persistence.TemporalType DATE Map as java.sql.Date Since: JPA 1.0

javax.persistence.TemporalType.TIME

JPA Enum Constant in javax.persistence.TemporalType TIME Map as java.sql.Time Since: JPA 1.0

javax.persistence.TemporalType.TIMESTAMP

JPA Enum Constant in javax.persistence.TemporalType TIMESTAMP Map as java.sql.Timestamp Since: JPA 1.0

javax.persistence.ValidationMode.AUTO

JPA Enum Constant in javax.persistence.ValidationMode AUTO If a Bean Validation provider is present in the environment, the persistence provider must perform the automatic validation of entities. If no Bean Validation provider is present in the environment, no lifecycle event validation takes place. This is the default behavior. Since: JPA 2.0

javax.persistence.ValidationMode.CALLBACK

JPA Enum Constant in javax.persistence.ValidationMode CALLBACK The persistence provider must perform the lifecycle event validation. It is an error if there is no Bean Validation provider present in the environment. Since: JPA 2.0

javax.persistence.ValidationMode.NONE

JPA Enum Constant in javax.persistence.ValidationMode NONE The persistence provider must not perform lifecycle event validation. Since: JPA 2.0

javax.persistence.criteria.CriteriaBuilder$Trimspec.LEADING

JPA Enum Constant in javax.persistence.criteria.CriteriaBuilder$Trimspec LEADING Trim from leading end. Since: JPA 2.0

javax.persistence.criteria.CriteriaBuilder$Trimspec.TRAILING

JPA Enum Constant in javax.persistence.criteria.CriteriaBuilder$Trimspec TRAILING Trim from trailing end. Since: JPA 2.0

javax.persistence.criteria.CriteriaBuilder$Trimspec.BOTH

JPA Enum Constant in javax.persistence.criteria.CriteriaBuilder$Trimspec BOTH Trim from both ends. Since: JPA 2.0

javax.persistence.criteria.JoinType.INNER

JPA Enum Constant in javax.persistence.criteria.JoinType INNER Inner join. Since: JPA 2.0

javax.persistence.criteria.JoinType.LEFT

JPA Enum Constant in javax.persistence.criteria.JoinType LEFT Left outer join. Since: JPA 2.0

javax.persistence.criteria.JoinType.RIGHT

JPA Enum Constant in javax.persistence.criteria.JoinType RIGHT Right outer join. Since: JPA 2.0

javax.persistence.criteria.Predicate$BooleanOperator.AND

JPA Enum Constant in javax.persistence.criteria.Predicate$BooleanOperator AND Since: JPA 2.0

javax.persistence.criteria.Predicate$BooleanOperator.OR

JPA Enum Constant in javax.persistence.criteria.Predicate$BooleanOperator OR Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.MANY_TO_ONE

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType MANY_TO_ONE Many-to-one association Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.ONE_TO_ONE

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType ONE_TO_ONE One-to-one association Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.BASIC

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType BASIC Basic attribute Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.EMBEDDED

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType EMBEDDED Embeddable class attribute Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.MANY_TO_MANY

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType MANY_TO_MANY Many-to-many association Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.ONE_TO_MANY

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType ONE_TO_MANY One-to-many association Since: JPA 2.0

javax.persistence.metamodel.Attribute$PersistentAttributeType.ELEMENT_COLLECTION

JPA Enum Constant in javax.persistence.metamodel.Attribute $PersistentAttributeType ELEMENT_COLLECTION Element collection Since: JPA 2.0

javax.persistence.metamodel.Bindable$BindableType.SINGULAR_ATTRIBUTE

JPA Enum Constant in javax.persistence.metamodel.Bindable $BindableType SINGULAR_ATTRIBUTE Single-valued attribute type Since: JPA 2.0