ObjectDB Database Search

101-150 of 200 results

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

JPA Enum Constant in javax.persistence.AccessType PROPERTY Property-based access is used. 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.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.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.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.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.CascadeType.DETACH

JPA Enum Constant in javax.persistence.CascadeType DETACH Cascade detach operation Since: JPA 2.0

javax.persistence.CascadeType.REFRESH

JPA Enum Constant in javax.persistence.CascadeType REFRESH Cascade refresh operation Since: JPA 1.0

javax.persistence.CascadeType.PERSIST

JPA Enum Constant in javax.persistence.CascadeType PERSIST Cascade persist operation Since: JPA 1.0

javax.persistence.CascadeType.ALL

JPA Enum Constant in javax.persistence.CascadeType ALL Cascade all operations Since: JPA 1.0

javax.persistence.CascadeType.REMOVE

JPA Enum Constant in javax.persistence.CascadeType REMOVE Cascade remove operation Since: JPA 1.0

javax.persistence.CascadeType.MERGE

JPA Enum Constant in javax.persistence.CascadeType MERGE Cascade merge operation Since: JPA 1.0

javax.persistence.CacheStoreMode.REFRESH

JPA Enum Constant in javax.persistence.CacheStoreMode REFRESH Insert/update entity data into cache when read from database and when committed into database. Forces refresh of cache for items read from database. 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.CacheStoreMode.BYPASS

JPA Enum Constant in javax.persistence.CacheStoreMode BYPASS Don't insert into cache. Since: JPA 2.0

javax.persistence.PersistenceContextType.EXTENDED

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

javax.persistence.PersistenceContextType.TRANSACTION

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

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

JPA Enum Constant in javax.persistence.ConstraintMode CONSTRAINT Apply the constraint. Since: JPA 2.1

javax.persistence.TemporalType.TIMESTAMP

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

javax.persistence.ConstraintMode.PROVIDER_DEFAULT

JPA Enum Constant in javax.persistence.ConstraintMode PROVIDER_DEFAULT Use the provider-defined default behavior. Since: JPA 2.1

javax.persistence.Basic

.Date , java.sql.Time , java.sql.Timestamp , byte[] , Byte[] , char[] , Character[] , enums , and any

javax.persistence.TemporalType.TIME

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

javax.persistence.TemporalType.DATE

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

javax.persistence.AccessType.FIELD

JPA Enum Constant in javax.persistence.AccessType FIELD Field-based access is used. Since: JPA 2.0

javax.persistence.ConstraintMode.NO_CONSTRAINT

JPA Enum Constant in javax.persistence.ConstraintMode NO_CONSTRAINT Do not apply the constraint. 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.INOUT

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

javax.persistence.ParameterMode.IN

JPA Enum Constant in javax.persistence.ParameterMode IN Stored procedure input 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.DiscriminatorType.STRING

JPA Enum Constant in javax.persistence.DiscriminatorType STRING String as the discriminator type. Since: JPA 1.0

javax.persistence.CacheRetrieveMode.BYPASS

JPA Enum Constant in javax.persistence.CacheRetrieveMode BYPASS Bypass the cache: get data directly from the database. 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.CacheRetrieveMode.USE

JPA Enum Constant in javax.persistence.CacheRetrieveMode USE Read entity data from the cache: 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.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.FlushModeType.AUTO

JPA Enum Constant in javax.persistence.FlushModeType AUTO (Default) Flushing to occur at query execution. Since: JPA 1.0

javax.persistence.CacheStoreMode.USE

JPA Enum Constant in javax.persistence.CacheStoreMode USE Insert entity data into cache when read from database and insert/update entity data when committed into database: this is the default behavior. Does not force refresh of already cached items when reading from database. Since: JPA 2.0

javax.persistence.FlushModeType.COMMIT

JPA Enum Constant in javax.persistence.FlushModeType COMMIT Flushing to occur at transaction commit. The provider may flush at other times, but is not required to. Since: JPA 1.0

javax.persistence.Enumerated.value

JPA Annotation Attribute in javax.persistence.Enumerated EnumType value default ORDINAL (Optional) The type used in mapping an enum type. Since: JPA 1.0

javax.jdo.annotations.VersionStrategy.VERSION_NUMBER

JDO Enum Constant in javax.jdo.annotations.VersionStrategy VERSION_NUMBER Since: JDO 2.1

javax.jdo.annotations.VersionStrategy.DATE_TIME

JDO Enum Constant in javax.jdo.annotations.VersionStrategy DATE_TIME Since: JDO 2.1

javax.jdo.annotations.VersionStrategy.UNSPECIFIED

JDO Enum Constant in javax.jdo.annotations.VersionStrategy UNSPECIFIED Since: JDO 2.1

javax.jdo.annotations.VersionStrategy.STATE_IMAGE

JDO Enum Constant in javax.jdo.annotations.VersionStrategy STATE_IMAGE Since: JDO 2.1

javax.jdo.annotations.VersionStrategy.NONE

JDO Enum Constant in javax.jdo.annotations.VersionStrategy NONE Since: JDO 2.1

javax.jdo.FetchGroup.BASIC

well as Date and its jdbc subtypes and Enum types. Since: JDO 2.2