Class WildcardTextFieldQuery
- java.lang.Object
 - 
- com.atlassian.confluence.search.v2.query.WildcardTextFieldQuery
 
 
- 
- All Implemented Interfaces:
 Expandable<SearchQuery>,SearchQuery
@SearchPrimitive public class WildcardTextFieldQuery extends Object implements SearchQuery
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringKEY- 
Fields inherited from interface com.atlassian.confluence.search.v2.SearchQuery
DEFAULT_BOOST 
 - 
 
- 
Constructor Summary
Constructors Constructor Description WildcardTextFieldQuery(String fieldName, String rawQuery, BooleanOperator operator) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)SearchQueryexpand()Expands this query into a composite query (that composes other queries).StringgetFieldName()StringgetKey()BooleanOperatorgetOperator()ListgetParameters()List of parameters asStrings orSearchQuerys.StringgetRawQuery()inthashCode()- 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface com.atlassian.confluence.search.v2.SearchQuery
getBoost, getSubClauses 
 - 
 
 - 
 
- 
- 
Field Detail
- 
KEY
public static final String KEY
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Constructor Detail
- 
WildcardTextFieldQuery
public WildcardTextFieldQuery(String fieldName, String rawQuery, BooleanOperator operator)
- Parameters:
 fieldName- the field name in the indexrawQuery- the raw query string for the fieldoperator- the operator applied to raw query string. For example, with a rawQuery of "foo bar", specifyingBooleanOperator.ANDmeans "foo AND bar"
 
 - 
 
- 
Method Detail
- 
getKey
public String getKey()
- Specified by:
 getKeyin interfaceSearchQuery- Returns:
 - the plugin key
 
 
- 
getParameters
public List getParameters()
Description copied from interface:SearchQueryList of parameters asStrings orSearchQuerys.- Specified by:
 getParametersin interfaceSearchQuery- Returns:
 Strings orSearchQuerys.
 
- 
getFieldName
public String getFieldName()
 
- 
getRawQuery
public String getRawQuery()
 
- 
getOperator
public BooleanOperator getOperator()
 
- 
expand
public SearchQuery expand()
Description copied from interface:SearchQueryExpands this query into a composite query (that composes other queries). By overriding this method, one can specify a new query that is composition of the behaviour of the composed queries.- Specified by:
 expandin interfaceExpandable<SearchQuery>- Specified by:
 expandin interfaceSearchQuery- Returns:
 - a query
 
 
 - 
 
 -