Class BooleanQueryBuilder<T>
- java.lang.Object
- 
- com.atlassian.confluence.search.v2.BooleanQueryBuilder<T>
 
- 
- Direct Known Subclasses:
- BooleanQuery.Builder,- LuceneQueryBuilders.BooleanQueryBuilder
 
 public abstract class BooleanQueryBuilder<T> extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description BooleanQueryBuilder()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description BooleanQueryBuilder<T>addMust(Collection<? extends T> must)<U extends T>
 BooleanQueryBuilder<T>addMust(U e)<U extends T>
 BooleanQueryBuilder<T>addMust(U... e)BooleanQueryBuilder<T>addMustNot(Collection<? extends T> mustNot)<U extends T>
 BooleanQueryBuilder<T>addMustNot(U e)<U extends T>
 BooleanQueryBuilder<T>addMustNot(U... e)BooleanQueryBuilder<T>addShould(Collection<? extends T> should)<U extends T>
 BooleanQueryBuilder<T>addShould(U e)<U extends T>
 BooleanQueryBuilder<T>addShould(U... e)BooleanQueryBuilder<T>boost(float boost)abstract Tbuild()
 
- 
- 
- 
Method Detail- 
addMustpublic <U extends T> BooleanQueryBuilder<T> addMust(U e) 
 - 
addMustpublic <U extends T> BooleanQueryBuilder<T> addMust(U... e) 
 - 
addMustpublic BooleanQueryBuilder<T> addMust(Collection<? extends T> must) 
 - 
addShouldpublic <U extends T> BooleanQueryBuilder<T> addShould(U e) 
 - 
addShouldpublic <U extends T> BooleanQueryBuilder<T> addShould(U... e) 
 - 
addShouldpublic BooleanQueryBuilder<T> addShould(Collection<? extends T> should) 
 - 
addMustNotpublic <U extends T> BooleanQueryBuilder<T> addMustNot(U e) 
 - 
addMustNotpublic <U extends T> BooleanQueryBuilder<T> addMustNot(U... e) 
 - 
addMustNotpublic BooleanQueryBuilder<T> addMustNot(Collection<? extends T> mustNot) 
 - 
boostpublic BooleanQueryBuilder<T> boost(float boost) 
 - 
buildpublic abstract T build() 
 
- 
 
-