| org.objectweb.speedo.query.api.QueryDefinition
All known Subclasses: org.objectweb.speedo.query.ejb.EJBQueryDefinitionImpl, org.objectweb.speedo.query.jdo.JDOQueryDefinitionImpl,
QueryDefinition | public interface QueryDefinition (Code) | | This interface represents the user definition of a query.
author: S.Chassande-Barrioz |
Method Summary | |
boolean | equals(Object o) | boolean | fetchIdentifierOnly() | long | getIndexFirst() The application may want to skip some number of results that may have
been previously returned, and additionally may want to limit the number
of instances returned from a query. | long | getIndexLast() The application may want to skip some number of results that may have
been previously returned, and additionally may want to limit the number
of instances returned from a query. | short | getQueryType() | int | hashCode() | String | qdToString(boolean oneLine) | boolean | withPrefetch() | void | withPrefetch(boolean withPrefetch) |
TYPE_DELETE | short TYPE_DELETE(Code) | | |
TYPE_SELECT | short TYPE_SELECT(Code) | | |
TYPE_UPDATE | short TYPE_UPDATE(Code) | | |
fetchIdentifierOnly | boolean fetchIdentifierOnly()(Code) | | |
getIndexFirst | long getIndexFirst()(Code) | | The application may want to skip some number of results that may have
been previously returned, and additionally may want to limit the number
of instances returned from a query. The default range for query execution
if this method is not called are (0, Long.MAX_VALUE).
|
getIndexLast | long getIndexLast()(Code) | | The application may want to skip some number of results that may have
been previously returned, and additionally may want to limit the number
of instances returned from a query. The default range for query execution
if this method is not called are (0, Long.MAX_VALUE).
|
getQueryType | short getQueryType()(Code) | | |
withPrefetch | boolean withPrefetch()(Code) | | |
withPrefetch | void withPrefetch(boolean withPrefetch)(Code) | | |
|
|