Interface S_QueryExit
-
- All Known Subinterfaces:
S_FilterEntryOrEmpty
,S_FilterExit
,S_MatchingRuleEntry
public interface S_QueryExit
See the grammar in Javadoc forQueryBuilder
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S_QueryExit
asc(ItemPath path)
S_QueryExit
asc(QName... names)
ObjectQuery
build()
ObjectFilter
buildFilter()
S_QueryExit
desc(ItemPath path)
S_QueryExit
desc(QName... names)
S_FilterExit
endBlock()
Closes theS_FilterEntry.block()
construction.S_QueryExit
maxSize(Integer n)
S_QueryExit
offset(Integer n)
-
-
-
Method Detail
-
endBlock
S_FilterExit endBlock()
Closes theS_FilterEntry.block()
construction. It is a bit high in hierarchy to allow empty block().end() construction without additional interface.
-
asc
S_QueryExit asc(QName... names)
-
asc
S_QueryExit asc(ItemPath path)
-
desc
S_QueryExit desc(QName... names)
-
desc
S_QueryExit desc(ItemPath path)
-
offset
S_QueryExit offset(Integer n)
-
maxSize
S_QueryExit maxSize(Integer n)
-
build
ObjectQuery build()
-
buildFilter
ObjectFilter buildFilter()
-
-