Uses of Class
com.atlassian.confluence.search.v2.BooleanOperator
-
Packages that use BooleanOperator Package Description com.atlassian.confluence.impl.search.v2.mappers com.atlassian.confluence.plugins.opensearch.mappers com.atlassian.confluence.search.v2 Provides an extensible, flexible search API.com.atlassian.confluence.search.v2.query -
-
Uses of BooleanOperator in com.atlassian.confluence.impl.search.v2.mappers
Methods in com.atlassian.confluence.impl.search.v2.mappers with parameters of type BooleanOperator Modifier and Type Method Description protected org.apache.lucene.search.QueryAbstractTextFieldQueryMapper. tryParse(org.apache.lucene.queryparser.flexible.standard.StandardQueryParser queryParser, BooleanOperator operator, String rawQuery, String defaultQueryField) -
Uses of BooleanOperator in com.atlassian.confluence.plugins.opensearch.mappers
Methods in com.atlassian.confluence.plugins.opensearch.mappers with parameters of type BooleanOperator Modifier and Type Method Description static org.opensearch.client.opensearch._types.query_dsl.OperatorMapperUtils. mapOperator(BooleanOperator op) -
Uses of BooleanOperator in com.atlassian.confluence.search.v2
Methods in com.atlassian.confluence.search.v2 that return BooleanOperator Modifier and Type Method Description static BooleanOperatorBooleanOperator. valueOf(String name)Returns the enum constant of this type with the specified name.static BooleanOperator[]BooleanOperator. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of BooleanOperator in com.atlassian.confluence.search.v2.query
Methods in com.atlassian.confluence.search.v2.query that return BooleanOperator Modifier and Type Method Description BooleanOperatorMultiTextFieldQuery. getOperator()BooleanOperatorQueryStringQuery. getOperator()BooleanOperatorTextFieldQuery. getOperator()BooleanOperatorTextSearchQuery. getOperator()BooleanOperatorWildcardTextFieldQuery. getOperator()Constructors in com.atlassian.confluence.search.v2.query with parameters of type BooleanOperator Constructor Description MultiTextFieldQuery(String query, Set<String> fields, BooleanOperator operator)Constructs a multi-field query with the specified query, fields and operator.MultiTextFieldQuery(Collection<String> fields, Map<String,? extends AnalyzerDescriptorProvider> analyzerProviders, BooleanOperator operator, String query)Create a query where a field can be tokenized by a provided analyzer.QueryStringQuery(Collection<String> fieldNames, String query, BooleanOperator operator)QueryStringQuery(Collection<String> fieldNames, String query, BooleanOperator operator, Map<String,Float> fieldsBoost)QueryStringQuery(Collection<String> fieldNames, Map<String,? extends AnalyzerDescriptorProvider> analyzerProviders, BooleanOperator operator, String query)Construct a query with a custom analyzer.QueryStringQuery(Collection<String> fieldNames, Map<String,? extends AnalyzerDescriptorProvider> analyzerProviders, BooleanOperator operator, String query, Map<String,Float> fieldsBoost)TextFieldQuery(String fieldName, AnalyzerDescriptorProvider analyzerProvider, BooleanOperator operator, String query)Construct a query with a custom analyzer.TextFieldQuery(String fieldName, String query, BooleanOperator operator)TextSearchQuery(String fieldName, String query, BooleanOperator operator)WildcardTextFieldQuery(String fieldName, String rawQuery, BooleanOperator operator)
-