Package org.kie.api.runtime.query
Class QueryContext
- java.lang.Object
- 
- org.kie.api.runtime.query.QueryContext
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- AdvancedQueryContext
 
 public class QueryContext extends Object implements Serializable - See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description QueryContext()QueryContext(Integer offset, Integer count)QueryContext(Integer offset, Integer count, String orderBy, boolean asc)QueryContext(String orderBy, boolean asc)QueryContext(QueryContext queryContext)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()IntegergetCount()IntegergetOffset()StringgetOrderBy()BooleanisAscending()voidsetAscending(Boolean ascending)voidsetCount(Integer count)voidsetOffset(Integer offset)voidsetOrderBy(String orderBy)
 
- 
- 
- 
Constructor Detail- 
QueryContextpublic QueryContext() 
 - 
QueryContextpublic QueryContext(QueryContext queryContext) 
 - 
QueryContextpublic QueryContext(String orderBy, boolean asc) 
 
- 
 - 
Method Detail- 
getOffsetpublic Integer getOffset() 
 - 
setOffsetpublic void setOffset(Integer offset) 
 - 
getCountpublic Integer getCount() 
 - 
setCountpublic void setCount(Integer count) 
 - 
getOrderBypublic String getOrderBy() 
 - 
setOrderBypublic void setOrderBy(String orderBy) 
 - 
isAscendingpublic Boolean isAscending() 
 - 
setAscendingpublic void setAscending(Boolean ascending) 
 - 
clearpublic void clear() 
 
- 
 
-