Uses of Class
org.apache.torque.util.BasePeerImpl
-
Packages that use BasePeerImpl Package Description org.apache.torque Torque is an object-relational mapper for Java.org.apache.torque.util Misc. utility classes. -
-
Uses of BasePeerImpl in org.apache.torque
Methods in org.apache.torque with type parameters of type BasePeerImpl Modifier and Type Method Description static <T,P extends BasePeerImpl<T>>
PTorque. getPeerInstance(Class<T> omClass)
This method returns a PeerImpl for the given class.<T,P extends BasePeerImpl<T>>
PTorqueInstance. getPeerInstance(Class<T> omClass)
This method returns a PeerImpl for the given class.Methods in org.apache.torque with parameters of type BasePeerImpl Modifier and Type Method Description static <T> void
Torque. registerPeerInstance(Class<T> omClass, BasePeerImpl<T> peerInstance)
This method registers a PeerImpl for a given class.<T> void
TorqueInstance. registerPeerInstance(Class<T> omClass, BasePeerImpl<T> peerInstance)
This method registers a PeerImpl for a given class. -
Uses of BasePeerImpl in org.apache.torque.util
Subclasses of BasePeerImpl in org.apache.torque.util Modifier and Type Class Description class
AbstractPeerImpl<T extends ObjectModel>
This is an abstract layer for all generated peer classes that implements several convenience methods that otherwise would have to be generated.Constructors in org.apache.torque.util with parameters of type BasePeerImpl Constructor Description LargeSelect(Criteria criteria, int pageSize, int memoryPageLimit, BasePeerImpl<T> peerImpl)
Creates a LargeSelect whose results are returned as aList
containing a maximum ofpageSize
objects of the type T at a time, maintaining a maximum ofmemoryPageLimit
pages of results in memory.LargeSelect(Criteria criteria, int pageSize, BasePeerImpl<T> peerImpl)
Creates a LargeSelect whose results are returned as aList
containing a maximum ofpageSize
objects of the type defined within the class namedreturnBuilderClassName
at a time, maintaining a maximum ofLargeSelect.memoryPageLimit
pages of results in memory.
-