Uses of Class
com.atlassian.confluence.macro.query.BooleanQueryFactory
-
Packages that use BooleanQueryFactory Package Description com.atlassian.confluence.macro.query com.atlassian.confluence.macro.query.params -
-
Uses of BooleanQueryFactory in com.atlassian.confluence.macro.query
Methods in com.atlassian.confluence.macro.query that return BooleanQueryFactory Modifier and Type Method Description BooleanQueryFactory
SearchQueryParser. parse(String filterValue, SearchQueryInterpreter criterionInterpreter)
Parses the provided filter value, using the specified criterion parser to findObject individual criterion.BooleanQueryFactory
SimpleSearchQueryParser. parse(String query)
Parses the specifiedString
into aBooleanQueryFactory
implementation according to the rules specified by theSearchQueryInterpreter
.Methods in com.atlassian.confluence.macro.query with parameters of type BooleanQueryFactory Modifier and Type Method Description void
BooleanQueryFactory. addMust(BooleanQueryFactory factory)
Adds the specifiedBooleanQueryFactory
to the "must match" criteria after callingtoBooleanQuery()
on it.void
BooleanQueryFactory. addMustNot(BooleanQueryFactory factory)
Adds the specifiedBooleanQueryFactory
to the "must not match" criteria after callingtoBooleanQuery()
on it.void
BooleanQueryFactory. addShould(BooleanQueryFactory factory)
Adds the specifiedBooleanQueryFactory
to the "should match" criteria after callingtoBooleanQuery()
on it.void
BooleanQueryFactory. merge(BooleanQueryFactory result)
Merges the specifiedBooleanQueryFactory
with the current one. -
Uses of BooleanQueryFactory in com.atlassian.confluence.macro.query.params
Methods in com.atlassian.confluence.macro.query.params that return BooleanQueryFactory Modifier and Type Method Description protected BooleanQueryFactory
BooleanQueryFactoryParameter. createBooleanQueryFactory(String paramValue, MacroExecutionContext ctx)
protected BooleanQueryFactory
BooleanQueryFactoryParameter. findObject(String paramValue, MacroExecutionContext ctx)
-