ObjectDB ObjectDB

getObjectsById(oids) - JDO PersistenceManager's method

Method
javax.jdo.PersistenceManager
Object[] getObjectsById(
  Object... oids
)

Return the objects with the given oids. This method is equivalent to calling getObjectsById(boolean,Object...) 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(boolean,Object...)