ObjectDB Database Search

101-150 of 200 results

Extent.closeAll() - JDO Method

JDO Method in javax.jdo.Extent void closeAll () Close all Iterator s associated with this Extent instance. Iterator s closed by this method will return false to hasNext() and will throw NoSuchElementException on next() . The Extent instance can still be used as a parameter of Query.setExtent , and to get an Iterator . Since: JDO 1.0

Extent.close(it) - JDO Method

JDO Method in javax.jdo.Extent void close (   Iterator  it ) Close an Iterator associated with this Extent instance. Iterator s closed by this method will return false to hasNext() and will throw NoSuchElementException on next() . The Extent instance can still be used as a parameter

JDOHelper.isDirty(pc) - JDO Static Method

that do not implement PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance

JDOHelper.isTransactional(pc) - JDO Static Method

PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance. Return: true

JDOHelper.isPersistent(pc) - JDO Static Method

PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance. Return: true

JDOHelper.isNew(pc) - JDO Static Method

implement PersistenceCapable return false . Parameters: pc - the PersistenceCapable instance. Return

JDOHelper.isDeleted(pc) - JDO Static Method

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

PersistenceManager.makeTransient(pc,useFetchPlan) - JDO Method

JDO Method in javax.jdo.PersistenceManager void makeTransient (   Object pc,    boolean useFetchPlan ) Make an instance transient, removing it from management by this PersistenceManager . If the useFetchPlan parameter is false , this method behaves exactly as

PersistenceManager.makeTransientAll(pcs,useFetchPlan) - JDO Method

JDO Method in javax.jdo.PersistenceManager void makeTransientAll (   Object[] pcs,    boolean useFetchPlan ) Make instances transient, removing them from management by this PersistenceManager . If the useFetchPlan parameter is false , this method behaves exactly

PersistenceManager.makeTransientAll(useFetchPlan,pcs) - JDO Method

JDO Method in javax.jdo.PersistenceManager void makeTransientAll (   boolean useFetchPlan,    Object... pcs ) Make instances transient, removing them from management by this PersistenceManager . If the useFetchPlan parameter is false , this method behaves exactly

PersistenceManager.makeTransientAll(pcs,useFetchPlan) - JDO Method

JDO Method in javax.jdo.PersistenceManager void makeTransientAll (   Collection pcs,    boolean useFetchPlan ) Make instances transient, removing them from management by this PersistenceManager . If the useFetchPlan parameter is false , this method behaves exactly

PersistenceManager.retrieve(pc,useFetchPlan) - JDO Method

must be retrieved. If the useFetchPlan parameter is false , this method behaves exactly as the corresponding

PersistenceManager.retrieveAll(pcs,useFetchPlan) - JDO Method

, and the implementation might retrieve more fields than the current fetch group. If the useFetchPlan parameter is false

PersistenceManager.retrieveAll(pcs,useFetchPlan) - JDO Method

might retrieve more fields than the current fetch group. If the useFetchPlan parameter is false

PersistenceManager.retrieveAll(useFetchPlan,pcs) - JDO Method

, and the implementation might retrieve more fields than the current fetch group. If the useFetchPlan parameter is false

PersistenceManager.setDetachAllOnCommit(flag) - JDO Method

JDO Method in javax.jdo.PersistenceManager void setDetachAllOnCommit (   boolean flag ) Sets the detachAllOnCommit setting. DetachAllOnCommit set to false specifies that the state of persistent instances in the cache after commit is defined by the retainValues flag. With this flag

PersistenceManager.setCopyOnAttach(flag) - JDO Method

JDO Method in javax.jdo.PersistenceManager void setCopyOnAttach (   boolean flag ) Sets the copyOnAttach setting. CopyOnAttach set to true specifies that during makePersistent, copies are made of detached parameter instances. With this flag set to false , detached parameter

PersistenceManagerFactory.setRestoreValues(restoreValues) - JDO Method

. If false , at rollback, the values of fields of newly persistent instances are unchanged

PersistenceManagerFactory.setCopyOnAttach(flag) - JDO Method

parameter instances. With this flag set to false , detached parameter instances are attached

PersistenceManagerFactory.setReadOnly(flag) - JDO Method

JDO Method in javax.jdo.PersistenceManagerFactory void setReadOnly (   boolean flag ) Sets the value for whether the datastore is to be considered read-only. ReadOnly set to false specifies that no updates can be performed to the datastore, and if updates are attempted

Query.setFilter(filter) - JDO Method

if the filter expression returned false for the evaluation of the current set of variable values

Query.close(queryResult) - JDO Method

: they return false to hasNext() and throw NoSuchElementException to next() . Parameters: queryResult

Query.closeAll() - JDO Method

JDO Method in javax.jdo.Query void closeAll () Close all query results associated with this Query instance, and release all resources associated with them. The query results might have iterators open on them. Iterators associated with the query results are invalidated: they return false to hasNext

Transaction.getRollbackOnly() - JDO Method

JDO Method in javax.jdo.Transaction boolean getRollbackOnly () Returns the rollback-only status of the transaction. When begun, the rollback-only status is false . Either the application or the JDO implementation may set this flag using setRollbackOnly. Return: true if the transaction has been marked for rollback. Since: JDO 2.0

Transaction.setRestoreValues(restoreValues) - JDO Method

of the beginning of the transaction. If false , at rollback, the values of fields of newly persistent

javax.jdo.annotations.Element

exists on the column or columns associated with this join. Specify "true" or " false ". Since: JDO 2.1

javax.jdo.annotations.Element.generateForeignKey

JDO Annotation Attribute in javax.jdo.annotations.Element String generateForeignKey default "" Generate or assume a foreign key constraint exists on the column or columns associated with this join. Specify "true" or " false ". Since: JDO 2.1

javax.jdo.annotations.Join.generatePrimaryKey

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

javax.jdo.annotations.Join.generateForeignKey

JDO Annotation Attribute in javax.jdo.annotations.Join String generateForeignKey default "" Generate or assume a foreign key constraint exists on the column or columns associated with this join. Specify "true" or " false ". Since: JDO 2.1

javax.jdo.annotations.Key

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

javax.jdo.annotations.Key.generateForeignKey

JDO Annotation Attribute in javax.jdo.annotations.Key String generateForeignKey default "" Generate or assume a foreign key constraint exists on the column or columns associated with this join. Specify "true" or " false ". Since: JDO 2.1

javax.jdo.annotations.Value

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

javax.jdo.annotations.Value.generateForeignKey

JDO Annotation Attribute in javax.jdo.annotations.Value String generateForeignKey default "" Generate or assume a foreign key constraint exists on the column or columns associated with this join. Specify "true" or " false ". Since: JDO 2.1

javax.jdo.spi.JDOImplHelper

interrogation; Boolean. FALSE if the instance does not satisfy the interrogation; or null

JDOImplHelper.nonBinaryCompatibleIs(pc,sibr) - JDO Method

implementation Return: Boolean.TRUE if the instance satisfies the state interrogation; Boolean. FALSE

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

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

StateInterrogation.isPersistent(pc) - JDO Method

return Boolean. FALSE . Instances not recognized by the implementation return null . Parameters: pc

StateInterrogation.isTransactional(pc) - JDO Method

-transactional return Boolean. FALSE . Instances not recognized by the implementation return null

StateInterrogation.isDirty(pc) - JDO Method

known by the implementation to be non-dirty return Boolean. FALSE . Instances not recognized by

StateInterrogation.isNew(pc) - JDO Method

-new return Boolean. FALSE . Instances not recognized by the implementation return null . Parameters

StateInterrogation.isDeleted(pc) - JDO Method

Boolean. FALSE . Instances not recognized by the implementation return null . Parameters: pc

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 . Instances known by the implementation to be non-detached return Boolean. FALSE . Instances not

StateManager.isDirty(pc) - JDO Method

JDO Method in javax.jdo.spi.StateManager boolean isDirty (   PersistenceCapable pc ) Tests whether this object is dirty. Instances that have been modified, deleted, or newly made persistent in the current transaction return true . Transient nontransactional instances return false

StateManager.isTransactional(pc) - JDO Method

optimistic transactions. Transient nontransactional instances return false . Parameters: pc - the calling

StateManager.isPersistent(pc) - JDO Method

JDO Method in javax.jdo.spi.StateManager boolean isPersistent (   PersistenceCapable pc ) Tests whether this object is persistent. Instances whose state is stored in the data store return true . Transient instances return false . Parameters: pc - the calling PersistenceCapable