Internal Website Search

51-100 of 200 results

StoredProcedureQuery.hasMoreResults() - JPA Method

JPA Method in javax.persistence.StoredProcedureQuery boolean hasMoreResults () Return true if the next 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. Return: true if next result corresponds

javax.persistence.MapKeyColumn

.0 boolean insertable default true (Optional) Whether the column is included in SQL INSERT ... updatable default true (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Since: JPA 2.0

javax.persistence.Basic

. Since: JPA 1.0 boolean optional default true (Optional) Defines whether the value of the field or property ... generation. If not specified, defaults to true . Since: JPA 1.0

StoredProcedureQuery.execute() - JPA Method

JPA Method in javax.persistence.StoredProcedureQuery boolean execute () 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. Return: true if first result corresponds to result

javax.persistence.Converter

. If the autoApply element is specified as true , the persistence provider must automatically apply the converter ... such via XML) will not be converted. Note that if autoApply is true , the Convert annotation may be used

javax.persistence.Basic.optional

JPA Annotation Attribute in javax.persistence.Basic boolean optional default true (Optional) Defines whether the value of the field or property may be null. This is a hint and is disregarded for primitive types; it may be used in schema generation. If not specified, defaults to true . Since: JPA 1.0

javax.persistence.criteria.CriteriaQuery

whether duplicate query results will be eliminated. A true value will cause duplicates to be eliminated. A false

SingularAttribute.isId() - JPA Method

JPA Method in javax.persistence.metamodel.SingularAttribute boolean isId () Is the attribute an id attribute. This method will return true if the attribute is an attribute that corresponds to a simple id, an embedded id, or an attribute of an id class. Return: boolean indicating whether the attribute is an id Since: JPA 2.0

javax.persistence.metamodel.SingularAttribute

will return true if the attribute is an attribute that corresponds to a simple id, an embedded id, or

EntityTransaction.begin() - JPA Method

JPA Method in javax.persistence.EntityTransaction void begin () Start a resource transaction. Throws: IllegalStateException - if isActive() is true Since: JPA 1.0

javax.persistence.metamodel.MappedSuperclassType

type has a single id attribute. Returns true for a simple id or embedded id; returns false

javax.persistence.EntityTransaction

Methods void begin () Start a resource transaction. Throws: IllegalStateException - if isActive() is true

PersistenceUtil.isLoaded(entity) - JPA Method

. Parameters: entity - whose load state is to be determined Return: false if the entity has not been loaded, else true Since: JPA 2.0

PersistenceUtil.isLoaded(entity,attributeName) - JPA Method

whose load state is to be determined Return: false if entity's state has not been loaded or if the attribute state has not been loaded, else true Since: JPA 2.0

EntityManagerFactory.isOpen() - JPA Method

JPA Method in javax.persistence.EntityManagerFactory boolean isOpen () Indicates whether the factory is open. Returns true until the factory has been closed. Return: boolean indicating whether the factory is open Since: JPA 1.0

PersistenceUnitUtil.isLoaded(entity) - JPA Method

is to be determined Return: false if the entity has not been loaded, else true Since: JPA 2.0

StateManager.isPersistent(pc) - JDO Method

return true . Transient instances return false . Parameters: pc - the calling PersistenceCapable instance Return: true if this instance is persistent. See Also: PersistenceManager.makePersistent (Object pc) Since: JDO 1.0

JDOHelper.isTransactional(pc) - JDO Static Method

with the current transaction return true . Transient instances and instances of classes that do not implement PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance. Return: true

JDOHelper.isDirty(pc) - JDO Static Method

made persistent in the current transaction return true . Transient instances and instances of classes ... . Return: true if the parameter instance has been modified in the current transaction. See Also: javax

JDOHelper.isDeleted(pc) - JDO Static Method

transaction return true . Transient instances and instances of classes that do not implement PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance. Return: true

JDOHelper.isDetached(pc) - JDO Static Method

JDO Static Method in javax.jdo.JDOHelper boolean isDetached (   Object pc ) Tests whether the parameter instance has been detached. Instances that have been detached return true . Transient instances return false. Parameters: pc - the instance Return: true if this instance is detached. See Also: PersistenceCapable() Since: JDO 2.0

JDOHelper.isPersistent(pc) - JDO Static Method

the data store return true . Transient instances and instances of classes that do not implement PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance. Return: true

JDOHelper.isNew(pc) - JDO Static Method

the current transaction return true . Transient instances and instances of classes that do not ... : true if the parameter instance was made persistent in the current transaction

Transaction.setRollbackOnly() - JDO Method

JDO Method in javax.jdo.Transaction void setRollbackOnly () Sets the rollback-only status of the transaction to true . After this flag is set to true , the transaction can no longer be committed, and any attempt to commit the transaction will throw JDOFatalDataStoreException . Since: JDO 2.0

Query.setFilter(filter) - JDO Method

, then it defaults to " true ", which has the effect of filtering the input Collection only for class type ... expression evaluates to true . The user may denote uniqueness in the filter expression by explicitly

javax.jdo.annotations.Join

" true " or "false". Since: JDO 2.1 String generatePrimaryKey default "" Generate or assume a primary key constraint exists on the column or columns associated with this join. Specify " true " or "false

PersistenceManager.retrieveAll(pcs,useFetchPlan) - JDO Method

. If the useFetchPlan parameter is true , and the fetch plan has not been modified from its default setting ... the implementation. If the useFetchPlan parameter is true , and the fetch plan has been changed from

PersistenceManager.retrieveAll(pcs,useFetchPlan) - JDO Method

. If the useFetchPlan parameter is true , and the fetch plan has not been modified from its default setting ... the implementation. If the useFetchPlan parameter is true , and the fetch plan has been changed from

PersistenceManager.retrieve(pc,useFetchPlan) - JDO Method

method without the useFetchPlan parameter. If the useFetchPlan parameter is true , and the fetch ... is true , and the fetch plan has been changed from its default setting, then the fields specified by

StateInterrogation.isTransactional(pc) - JDO Method

with the current transaction return Boolean. TRUE . Instances known by the implementation to be non ... . Parameters: pc - the instance. Return: Boolean. TRUE if the parameter instance is transactional. See Also: PersistenceCapable() Since: JDO 2.0

StateInterrogation.isPersistent(pc) - JDO Method

the data store return Boolean. TRUE . Instances known by the implementation to be non-persistent ... - the instance. Return: Boolean. TRUE if the parameter instance is persistent

StateInterrogation.isNew(pc) - JDO Method

that have been made persistent in the current transaction return Boolean. TRUE . Instances known by the implementation to be non ... : pc - the instance. Return: Boolean. TRUE if the parameter instance was made persistent in

StateInterrogation.isDirty(pc) - JDO Method

made persistent in the current transaction, or modified while detached return Boolean. TRUE . Instances ... the implementation return null . Parameters: pc - the instance. Return: Boolean. TRUE if the parameter

StateInterrogation.isDetached(pc) - JDO Method

JDO Method in javax.jdo.spi.StateInterrogation Boolean isDetached (   Object pc ) Tests whether the parameter instance is detached. Instances that are detached return Boolean. TRUE ... recognized by the implementation return null . Parameters: pc - the instance. Return: Boolean. TRUE

StateInterrogation.isDeleted(pc) - JDO Method

transaction return Boolean. TRUE . Instances known by the implementation to be non-deleted return ... - the instance. Return: Boolean. TRUE if the parameter instance was deleted in the current transaction

PersistenceCapable.jdoIsNew() - JDO Method

JDO Method in javax.jdo.spi.PersistenceCapable boolean jdoIsNew () Tests whether this object has been newly made persistent. Instances that have been made persistent in the current transaction return true . Transient instances return false. Return: true if this instance was made persistent in

PersistenceCapable.jdoIsPersistent() - JDO Method

JDO Method in javax.jdo.spi.PersistenceCapable boolean jdoIsPersistent () Tests whether this object is persistent. Instances that represent persistent objects in the data store return true . Return: true if this instance is persistent. See Also: javax.jdo.JDOHelper.isPersistent (Object pc) PersistenceManager.makePersistent (Object pc) Since: JDO 1.0

PersistenceCapable.jdoIsDetached() - JDO Method

JDO Method in javax.jdo.spi.PersistenceCapable boolean jdoIsDetached () Tests whether this object has been detached. Instances that have been detached return true . Transient instances return false. Return: true if this instance is detached. See Also: javax.jdo.JDOHelper.isDetached (Object pc) Since: JDO 2.0

PersistenceCapable.jdoIsDeleted() - JDO Method

JDO Method in javax.jdo.spi.PersistenceCapable boolean jdoIsDeleted () Tests whether this object has been deleted. Instances that have been deleted in the current transaction return true . Transient instances return false. Return: true if this instance was deleted in the current transaction

PersistenceCapable.jdoIsTransactional() - JDO Method

JDO Method in javax.jdo.spi.PersistenceCapable boolean jdoIsTransactional () Tests whether this object is transactional. Instances whose state is associated with the current transaction return true . Transient instances return false. Return: true if this instance is transactional. See Also: javax

PersistenceCapable.jdoIsDirty() - JDO Method

JDO Method in javax.jdo.spi.PersistenceCapable boolean jdoIsDirty () Tests whether this object is dirty. Instances that have been modified, deleted, or newly made persistent in the current transaction return true . Transient instances return false. Return: true if this instance has been modified in

javax.jdo.annotations.Value

associated with this join. Specify " true " or "false". Since: JDO 2.1 String index default "" The name

PersistenceManagerFactory.setCopyOnAttach(flag) - JDO Method

JDO Method in javax.jdo.PersistenceManagerFactory void setCopyOnAttach (   boolean flag ) Sets the default copyOnAttach setting for all PersistenceManager instances obtained from this factory. CopyOnAttach set to true specifies that during makePersistent, copies are made of detached

javax.jdo.annotations.Serialized

" and "property" elements. This is the same as specifying @Persistent(serialized=" true "). Since: JDO 2

javax.jdo.annotations.Persistent.cacheable

JDO Annotation Attribute in javax.jdo.annotations.Persistent String cacheable default " true " Whether this field/property is cacheable in a Level2 cache. Since: JDO 2.2

PersistenceManagerFactory.setRestoreValues(restoreValues) - JDO Method

JDO Method in javax.jdo.PersistenceManagerFactory void setRestoreValues (   boolean restoreValues ) Set the default value for the RestoreValues property. If true , at rollback, fields of newly persistent instances are restored to their values as of the beginning of the transaction

javax.jdo.annotations.PersistenceCapable

JDO Annotation PersistenceCapable Target: ElementType.TYPE Implemented Interfaces: Annotation Annotation for whether the class or interface is persistence-capable. Since: JDO 2.1 Public Annotation Attributes String cacheable default " true " Whether this class is cacheable in a Level2 cache

javax.jdo.annotations.Persistent

JDO Annotation Persistent Target: ElementType.FIELD, ElementType.METHOD Implemented Interfaces: Annotation Annotation for defining the persistence of a member. This corresponds to the xml elements "field" and "property". Since: JDO 2.1 Public Annotation Attributes String cacheable default " true

javax.jdo.annotations.PersistenceCapable.cacheable

JDO Annotation Attribute in javax.jdo.annotations.PersistenceCapable String cacheable default " true " Whether this class is cacheable in a Level2 cache. Since: JDO 2.2

javax.jdo.annotations.Key

with this join. Specify " true " or "false". Since: JDO 2.1 String index default "" The name of the index