ObjectDB Database Search

51-100 of 200 results

jakarta.persistence.EnumType

(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long

jakarta.persistence.criteria.Predicate.BooleanOperator

( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited from java.lang.constant

jakarta.persistence.criteria.Nulls

(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional

jakarta.persistence.metamodel.Attribute.PersistentAttributeType

(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods

jakarta.persistence.metamodel.Bindable.BindableType

(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods

jakarta.persistence.metamodel.PluralAttribute.CollectionType

(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited from java.lang.constant

jakarta.persistence.ValidationMode

(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods

jakarta.persistence.metamodel.Type.PersistenceType

(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long

jakarta.persistence.criteria.CriteriaBuilder.Trimspec

(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long

jakarta.persistence.criteria.LocalDateField

(), getClass(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.criteria.LocalTimeField

.lang.Object clone(), equals(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.criteria.LocalDateTimeField

(), getClass(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.criteria.JoinType

(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited from java.lang

jakarta.persistence.AccessType

(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited

jakarta.persistence.CascadeType

(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited from

jakarta.persistence.CacheRetrieveMode

(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods

jakarta.persistence.CacheStoreMode

(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK

jakarta.persistence.SchemaValidationException

(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.QueryTimeoutException

(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.RollbackException

(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.SharedCacheMode

(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK

jakarta.persistence.TemporalType

(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK

jakarta.persistence.TransactionRequiredException

(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.Timeout

), finalize(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.SynchronizationType

(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional

jakarta.persistence.NonUniqueResultException

(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.NoResultException

clone(), equals(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.Persistence

(), toString(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.ParameterMode

(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long

jakarta.persistence.OptimisticLockException

(), getClass(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.PersistenceException

(), hashCode(), notify(), notifyAll(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.PersistenceConfiguration

(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.Persistence.PersistenceUtilImpl

(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long )

jakarta.persistence.PersistenceContextType

(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited from java.lang.constant.Constable

jakarta.persistence.PessimisticLockScope

(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait( long ), wait( long ,int), wait0( long ) Additional JDK methods inherited from java.lang.constant.Constable

jakarta.persistence.GeneratedValue

") @Column(name = "CUST_ID") public Long getId() { return id; } Example 2: @Id @GeneratedValue(strategy = TABLE, generator = "CUST_GEN") @Column(name = "CUST_ID") Long id; See Also: GenerationType Id

jakarta.persistence.MapsId

{ @Id long empId; String name; ... } And then the dependent entity uses EmbeddedId to declare its composite primary key: @Embeddable public class DependentId { String name; long empid; // corresponds

jakarta.persistence.Convert

Employee { @Id long id; @Convert(converter = BooleanToIntegerConverter.class) boolean fullTime ... EmployeeDateConverter implements AttributeConverter { ... } @Entity public class Employee { @Id long

jakarta.persistence.Version

: int , Integer , short , Short , long , Long , java.sql.Timestamp , Instant , LocalDateTime

jakarta.persistence.GenerationType.TABLE

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.GenerationType TABLE Indicates that the persistence provider must assign primary keys for the entity using an underlying database table to ensure uniqueness. May be used to generate primary keys of type Long , Integer , long , or int . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.GenerationType.SEQUENCE

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.GenerationType SEQUENCE Indicates that the persistence provider must assign primary keys for the entity using a database sequence. May be used to generate primary keys of type Long , Integer , long , or int . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.GenerationType.IDENTITY

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.GenerationType IDENTITY Indicates that the persistence provider must assign primary keys for the entity using a database identity column. May be used to generate primary keys of type Long , Integer , long , or int . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.GenerationType.AUTO

of type Long , Integer , long , or int , the provider selects between GenerationType.TABLE

jakarta.persistence.Id

or field. Example: @Id public Long getId() { return id; } See Also: Column GeneratedValue

jakarta.persistence.MapKeyJoinColumn

= "ID") Map videoInventory; ... } @Entity public class Movie { @Id long id; String title

jakarta.persistence.EntityManager

to its persistent fields and properties are automatically detected, as long as it is associated with an active

jakarta.persistence.criteria.PluralJoin

to support casting scalar expressions to String , and String expressions to Integer , Long , Float

jakarta.persistence.criteria.Path

, and String expressions to Integer , Long , Float , and Double . Support for typecasts between

jakarta.persistence.criteria.Predicate

to String , and String expressions to Integer , Long , Float , and Double . Support for typecasts

jakarta.persistence.criteria.MapJoin

to Integer , Long , Float , and Double . Support for typecasts between other basic types is not required