ObjectDB ObjectDB

getObjectsById(oids) - JDO PersistenceManager's method

Method
javax.jdo.PersistenceManager
Collection getObjectsById(
  Collection oids
)

Return the objects with the given oids. This method is equivalent to calling getObjectsById(Collection, boolean) with the validate flag true.
Parameters:
oids - the oids of the objects to return
Returns:
the objects that were looked up, in the same order as the oids parameter.
Since:
JDO 2.0
See Also:
getObjectsById(Collection,boolean)