Uses of Interface
javax.jdo.Extent
-
Packages that use Extent Package Description javax.jdo Package providing the Java Data Objects (JDO) primary API components. -
-
Uses of Extent in javax.jdo
Methods in javax.jdo that return Extent Modifier and Type Method Description <T> Extent<T>PersistenceManager. getExtent(Class<T> persistenceCapableClass)Equivalent togetExtent (persistenceCapableClass, true).<T> Extent<T>PersistenceManager. getExtent(Class<T> persistenceCapableClass, boolean subclasses)ThePersistenceManagermanages a collection of instances in the data store based on the class of the instances.Methods in javax.jdo with parameters of type Extent Modifier and Type Method Description <T> Query<T>PersistenceManager. newQuery(Extent<T> cln)Create a newQuerywith theClassof the candidate instances and candidateExtent.<T> Query<T>PersistenceManager. newQuery(Extent<T> cln, String filter)Create a newQuerywith the candidateExtentand filter; the class is taken from theExtent.voidQuery. setCandidates(Extent<T> pcs)Set the candidateExtentto query.
-