ObjectDB Database Search

1-50 of 198 results

Modifying something with Explorer -> app JPQL with Enum doesn't work anymore

. The problem is that redeploying the application after that kind of usage of Explorer makes JPQL with Enum ... is that redeploying the application after that kind of usage of Explorer makes JPQL with Enum to don't work ... avoid editing enum values in the Explorer until this is solved. I think that editing enum values

JPA Persistable Types

, Date and Math types. Multi value types - Collections, Maps and Arrays. Miscellaneous types: Enum ... method on an object of such proxy classes. Enum Types Every enum type (user defined or system defined ... defined enum types should be persisted. By default, enum values are represented internally by

Literals in JPQL and Criteria Queries

(e.g. 'abc' ), enum literals (e.g. mypackage.MyEnum.MY_VALUE ) and entity type literals (e.g. Country ... '} Enum Literals JPA 2 adds support for enum literals. Enum literals in JPQL queries use the ordinary Java syntax for enum values, but the fully qualified name of the enum type

@ElementCollection of type enum

.EAGER) private Set permissions; package x.x.x.x public enum UserPermission { BASIC, COACH, ADMIN ... entries). Bug: If UserPermission enum is modified by adding, for example, BASIC231 between BASIC ... (fetch = FetchType.EAGER) private Set permissions; saves enum values as ordinal, not String

mismatch after Enum changes

Hi, I have an entity, an attribute is a enum type: public enum MyEnum { AA, BB, CC, DD; } I populated the database, than I changed the enum types deleting some unused types (es. AA) without reset database:   public enum MyEnum { BB, CC, DD; } Now there are mismatches with enums in database

Using Enum type in NamedQuery: Field is not found in type

with queries that reference enum types. On my entity object is a static enum public static enum ... had it working with Hibernate - with just the quoted name string of the enum type in the query. ObjectDB ... class enum . Please try: SELECT o FROM Obj o WHERE o.type = com.my.fully.qualified.name.Obj$Type.A i

List of Enum Values in an entity

Entity with an ArrayList of Enums : private ArrayList flags; The flags are stored into the database ... ? Joachim Flashbaer Joachim Beig A rrays of enum values are expected to be supported by ObjectDB ... ;      public static enum MyEnum {         V1

Error in reading Enum in JPA - Failed to read using reflection

I have created a very simple Entity User which has an enum Status (INACTIVE, ACTIVE ... : com.xxx.Status is not an enum type satinder_2000 Satinder Singh Please check your enum definition. It should be ordinary enum with no annotations (such as @Entity ). If you cannot see anything wrong

JPA JPQL WHERE clause for IN :variable not working if variable is a list of Enums

:enumFieldList)" And enum field is defined in MyEntity as:     @Enumerated ... ; public enum MyEnumType { VALUE1, VALUE2, VALUE3, VALUE4 } and I call:      ... understood the JPA JPQL IN clause should work with Enum types - is that the case, or is this an objectdb

Schema evolution & renamed/moved enum

Hello, I have an entity with an attribute of type enum say com.pkg1.MyEnum. I created ... moved that enum to a different package and renamed it say com.pkg2.MyNewEnum, which is not the new ... to use the tag in the config file because my enum is not an entity. What is a the proper way

Null enums and IS (NOT) NULL: NullPointerException

Hello. I'm getting NullPointerException when adding % enum field% IS (NOT) NULL or == (!=) NULL in ... class TEntity { public enum ExampleEnum { P1, P2 } @Id @GeneratedValue(strategy = GenerationType ... ) { this.entities = entities; } } Vladiator Vlad Myachikov Thank you for this report. Comparing enum

fetch by enum

I have Entity named Fruits  with a column Type which is a enum . I want to fetch the based on Type  Eg.  Query qry= em.createQuery("Select f from Fruits f where f.Type =: t ");         qry.setParameter("t",Type.Sweet);   But it return

JPA Annotations for Fields

The way a field of a persistable class is managed by JPA can be set by the following annotations: Additional annotations (and enum ) are designated for enum fields: Other additional annotations (and enum ) are designated for date and calendar fields: Chapter 2 of the ObjectDB manual explains how to use all the above annotations.

Control and Setting

This section contains miscellaneous JPA types. The PersistenceUtil and PersistenceUnitUtil interfaces provide general utility methods: The Cache interface and the CacheRetrieveMode and CacheStoreMode enum types serve in managing the EntityManagerFactory's shared (level 2) cache: Other enum types are provided for setting of various JPA operations:

Database Schema Evolution

and enum values that are stored as numeric ordinal values (the default). From any type to Boolean or ... any type to String (using toString() if necessary). From String to numeric types including enum types

Shared (L2) Entity Cache

of the CacheRetrieveMode enum : CacheRetrieveMode . USE - cache is used. CacheRetrieveMode . BYPASS - cache is not ... has three valid values, which are defined as constants of the CacheStoreMode enum : CacheStoreMode

Setting and Tuning of JPA Queries

to be visible to the query. Flush policy in JPA is represented by the FlushModeType enum , which has two values

Index Definition

, java.sql.Timestamp. Any enum type. Reference to an entity object. Arrays and collections that contain

JPA Metamodel API Attributes

The following interfaces and enum types represent attributes (persistent fields and properties) in the JPA Metamodel API: See the Metamodel Attribute Interface Hierarchy section for more details and examples.

JPA Metamodel API Types

The following interfaces and enum represent types in the JPA Metamodel API:  See the Metamodel Type Interface Hierarchy section for more details and examples.

JPA Metamodel API

) in the persistent object model are represented by the following sets of interfaces and enum types

JPA Annotations for Access Modes

Persistence fields can either be accessed by JPA directly (as fields) or indirectly (as properties and get/set methods). JPA 2 provides an annotation and an enum for setting the access mode: More details are provided in chapter 2 of the ObjectDB manual.

Comparison in JPQL and Criteria API

). Enum values can be compared by using the equality operators (=, , == , != ). Instances of user

JPA Annotations for Relationships

annotation enables configuring cascade and fetch policy, using the following enum types: Additional

JPA Annotations for Mapping (ORM)

The following JPA annotations and enums are designated for mapping a JPA object model to a relational database, and are not required by ObjectDB: ObjectDB silently ignores all the above annotations.

ObjectDB Object Database Features

types (@Embeddable) Mapped super classes (@MappedSuperclass) Enum classes Serializable types Persistent

Chapter 4 - JPA Queries (JPQL / Criteria)

(named) queries. It explains how to use the relevant interfaces, annotations, enums and methods

JPA Primary Key

.lang.String. java.util.Date , java.sql.Date , java.sql.Time , java.sql.Timestamp. Any enum type

Enum fields are set to null and embeddable enum class does not show in explorer

I switched to version 2.8.2 and now it seems that my enum types are not recognized and the field ... ! The enum type is also not listed in the explorer. I am talking about an enum class, which implements ... this is relevant. public enum Role implements package.of.Role {     ... } @ElementCollection

EnumRef jakarta.persistence.criteria.Predicate$BooleanOperator

JPA Enum BooleanOperator java.lang.Object ∟  java.lang. Enum ∟  javax.persistence.criteria.Predicate$BooleanOperator Since: JPA 2.0 Enum Constants AND Since: JPA 2.0 OR Since: JPA 2.0 Public Static Enum Methods: Predicate.BooleanOperator[] values () Returns an array containing

EnumRef jakarta.persistence.criteria.CriteriaBuilder$Trimspec

JPA Enum Trimspec java.lang.Object ∟  java.lang. Enum ∟  javax.persistence.criteria.CriteriaBuilder$Trimspec Used to specify how strings are trimmed. Since: JPA 2.0 Enum Constants BOTH Trim ... trailing end. Since: JPA 2.0 Public Static Enum Methods: CriteriaBuilder.Trimspec[] values () Returns

EnumRef jakarta.persistence.metamodel.Bindable$BindableType

JPA Enum BindableType java.lang.Object ∟  java.lang. Enum ∟  javax.persistence.metamodel.Bindable $BindableType Since: JPA 2.0 Enum Constants ENTITY_TYPE Entity type Since: JPA 2.0 PLURAL ... Since: JPA 2.0 Public Static Enum Methods: Bindable.BindableType[] values () Returns an array

EnumRef jakarta.persistence.metamodel.Attribute$PersistentAttributeType

JPA Enum PersistentAttributeType java.lang.Object ∟  java.lang. Enum ∟  javax.persistence.metamodel.Attribute $PersistentAttributeType Since: JPA 2.0 Enum Constants BASIC Basic attribute ... ONE_TO_ONE One-to-one association Since: JPA 2.0 Public Static Enum Methods: Attribute.PersistentAttributeType[] values

EnumRef jakarta.persistence.metamodel.Type$PersistenceType

JPA Enum PersistenceType java.lang.Object ∟  java.lang. Enum ∟  javax.persistence.metamodel.Type $PersistenceType Since: JPA 2.0 Enum Constants BASIC Basic type Since: JPA 2.0 EMBEDDABLE ... Since: JPA 2.0 Public Static Enum Methods: Type.PersistenceType[] values () Returns an array containing

EnumRef jakarta.persistence.metamodel.PluralAttribute$CollectionType

JPA Enum CollectionType java.lang.Object ∟  java.lang. Enum ∟  javax.persistence.metamodel.PluralAttribute $CollectionType Since: JPA 2.0 Enum Constants COLLECTION Collection-valued ... SET Set-valued attribute Since: JPA 2.0 Public Static Enum Methods: PluralAttribute.CollectionType

EnumRef jakarta.persistence.EnumType

JPA Enum EnumType java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence.EnumType ... how a persistent property or field whose type is a Java enum type should be persisted ... . Enum Constants ORDINAL Persist enumerated type property or field as an integer. The ordinal value

AnnotationRef jakarta.persistence.Enumerated

is optional if the type of a persistent field or property is a Java enum type. The Enumerated annotation ... annotation when the element type of the collection is an enum type. An enum can be mapped as ... this annotation. If a persistent field or property of enum type has no explicit Enumerated annotation

EnumRef jakarta.persistence.PessimisticLockScope

JPA Enum PessimisticLockScope java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... that allow lock modes to be specified or used with the NamedQuery annotation. Since: JPA 2.0 Enum Constants ... contains the foreign key) will not be locked by default. Since: JPA 2.0 Public Static Enum Methods

EnumRef jakarta.persistence.LockModeType

JPA Enum LockModeType java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... for rollback). Since: JPA 1.0 Enum Constants NONE No lock. Since: JPA 2.0 OPTIMISTIC Optimistic lock ... applications. Since: JPA 1.0 Public Static Enum Methods: Method inherited from class java.lang. Enum compareTo

EnumRef jakarta.persistence.SynchronizationType

JPA Enum SynchronizationType java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... to the current transaction by means of the () method. Since: JPA 2.1 Enum Constants SYNCHRONIZED Persistence ... Persistence context must be explicitly joined to the current transaction Since: JPA 2.1 Public Static Enum

EnumRef jakarta.persistence.CascadeType

JPA Enum CascadeType java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... .cascade OneToOne.cascade OneToMany.cascade ManyToMany.cascade Since: JPA 1.0 Enum Constants ... Enum Methods: Method inherited from class java.lang. Enum compareTo , compareTo , describeConstable

EnumRef jakarta.persistence.PersistenceContextType

JPA Enum PersistenceContextType java.lang.Object ∟  java.lang. Enum ∟  jakarta ... . Since: JPA 1.0 Enum Constants EXTENDED Extended persistence context Since: JPA 1.0 TRANSACTION Transaction-scoped persistence context Since: JPA 1.0 Public Static Enum Methods: Method inherited from

EnumRef jakarta.persistence.SharedCacheMode

JPA Enum SharedCacheMode java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... of () . Since: JPA 2.0 Enum Constants ALL All entities and entity-related state and data are cached ... 2.0 Public Static Enum Methods: Method inherited from class java.lang. Enum compareTo , compareTo

EnumRef jakarta.persistence.ConstraintMode

JPA Enum ConstraintMode java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence.ConstraintMode Used to control the application of a constraint. Since: JPA 2.1 Enum Constants CONSTRAINT ... PROVIDER_DEFAULT Use the provider-defined default behavior. Since: JPA 2.1 Public Static Enum Methods

EnumRef jakarta.persistence.TemporalType

JPA Enum TemporalType java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... .0 The JPA Persistable Types article explains how to use TemporalType . Enum Constants DATE Map as ... .Timestamp Since: JPA 1.0 Public Static Enum Methods: Method inherited from class java.lang. Enum compareTo

EnumRef jakarta.persistence.AccessType

JPA Enum AccessType java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence.AccessType ... Since: JPA 2.0 Enum Constants FIELD Field-based access is used. Since: JPA 2.0 PROPERTY Property-based ... Enum Methods: Method inherited from class java.lang. Enum compareTo , compareTo , describeConstable

EnumRef jakarta.persistence.ParameterMode

JPA Enum ParameterMode java.lang.Object ∟  java.lang. Enum ∟  jakarta.persistence ... StoredProcedureParameter Since: JPA 2.1 Enum Constants IN Stored procedure input parameter ... _CURSOR parameters to return result sets from stored procedures. Since: JPA 2.1 Public Static Enum

Miscellaneous JDO Annotations

This section contains miscellaneous JDO annotations and associated enum types:

JDO Annotations for Fields

The way a field of a persistable class is managed by JDO can be set by the following annotations and enum types:

JDO Annotations for Mapping (ORM)

The following JDO annotations and enums are designated for mapping a JDO object model to a relational database, and are not required by ObjectDB: ObjectDB silently ignores all the above annotations.