org.elasticsearch.index.query
Class QueryFilterBuilder

java.lang.Object
  extended by org.elasticsearch.index.query.BaseFilterBuilder
      extended by org.elasticsearch.index.query.QueryFilterBuilder
All Implemented Interfaces:
ToXContent, FilterBuilder

public class QueryFilterBuilder
extends BaseFilterBuilder

A filter that simply wraps a query.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.MapParams, ToXContent.Params
 
Field Summary
 
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
 
Constructor Summary
QueryFilterBuilder(QueryBuilder queryBuilder)
          A filter that simply wraps a query.
 
Method Summary
 QueryFilterBuilder cache(boolean cache)
          Should the filter be cached or not.
protected  void doXContent(XContentBuilder builder, ToXContent.Params params)
           
 QueryFilterBuilder filterName(String filterName)
          Sets the filter name for the filter that can be used when searching for matched_filters per hit.
 
Methods inherited from class org.elasticsearch.index.query.BaseFilterBuilder
toXContent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QueryFilterBuilder

public QueryFilterBuilder(QueryBuilder queryBuilder)
A filter that simply wraps a query.

Parameters:
queryBuilder - The query to wrap as a filter
Method Detail

filterName

public QueryFilterBuilder filterName(String filterName)
Sets the filter name for the filter that can be used when searching for matched_filters per hit.


cache

public QueryFilterBuilder cache(boolean cache)
Should the filter be cached or not. Defaults to false.


doXContent

protected void doXContent(XContentBuilder builder,
                          ToXContent.Params params)
                   throws IOException
Specified by:
doXContent in class BaseFilterBuilder
Throws:
IOException


Copyright © 2009-2012. All Rights Reserved.