Class IncludeExclude
java.lang.Object
org.elasticsearch.search.aggregations.bucket.terms.IncludeExclude
- All Implemented Interfaces:
Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment
public class IncludeExclude
extends Object
implements Writeable, org.elasticsearch.common.xcontent.ToXContentFragment
Defines the include/exclude regular expression filtering for string terms aggregation. In this filtering logic,
exclusion has precedence, where the
include is evaluated first and then the exclude.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic classclassstatic classstatic classNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic org.elasticsearch.common.xcontent.ParseFieldstatic org.elasticsearch.common.xcontent.ParseFieldstatic org.elasticsearch.common.xcontent.ParseFieldstatic org.elasticsearch.common.xcontent.ParseFieldFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionIncludeExclude(double[] includeValues, double[] excludeValues)IncludeExclude(int partition, int numPartitions)IncludeExclude(long[] includeValues, long[] excludeValues)IncludeExclude(String[] includeValues, String[] excludeValues)IncludeExclude(String include, String exclude)IncludeExclude(String include, String exclude, String[] includeValues, String[] excludeValues)IncludeExclude(SortedSet<org.apache.lucene.util.BytesRef> includeValues, SortedSet<org.apache.lucene.util.BytesRef> excludeValues)IncludeExclude(org.apache.lucene.util.automaton.RegExp include, org.apache.lucene.util.automaton.RegExp exclude)IncludeExclude(org.apache.lucene.util.automaton.RegExp include, org.apache.lucene.util.automaton.RegExp exclude, SortedSet<org.apache.lucene.util.BytesRef> includeValues, SortedSet<org.apache.lucene.util.BytesRef> excludeValues)Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionconvertToLongFilter(DocValueFormat format)convertToStringFilter(DocValueFormat format)booleaninthashCode()booleanbooleanstatic IncludeExcludemerge(IncludeExclude include, IncludeExclude exclude)static IncludeExcludeparseExclude(org.elasticsearch.common.xcontent.XContentParser parser)static IncludeExcludeparseInclude(org.elasticsearch.common.xcontent.XContentParser parser)org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
Field Details
-
INCLUDE_FIELD
public static final org.elasticsearch.common.xcontent.ParseField INCLUDE_FIELD -
EXCLUDE_FIELD
public static final org.elasticsearch.common.xcontent.ParseField EXCLUDE_FIELD -
PARTITION_FIELD
public static final org.elasticsearch.common.xcontent.ParseField PARTITION_FIELD -
NUM_PARTITIONS_FIELD
public static final org.elasticsearch.common.xcontent.ParseField NUM_PARTITIONS_FIELD
-
-
Constructor Details
-
IncludeExclude
public IncludeExclude(org.apache.lucene.util.automaton.RegExp include, org.apache.lucene.util.automaton.RegExp exclude)- Parameters:
include- The regular expression pattern for the terms to be includedexclude- The regular expression pattern for the terms to be excluded
-
IncludeExclude
-
IncludeExclude
-
IncludeExclude
-
IncludeExclude
public IncludeExclude(SortedSet<org.apache.lucene.util.BytesRef> includeValues, SortedSet<org.apache.lucene.util.BytesRef> excludeValues)- Parameters:
includeValues- The terms to be includedexcludeValues- The terms to be excluded
-
IncludeExclude
-
IncludeExclude
public IncludeExclude(double[] includeValues, double[] excludeValues) -
IncludeExclude
public IncludeExclude(long[] includeValues, long[] excludeValues) -
IncludeExclude
public IncludeExclude(int partition, int numPartitions) -
IncludeExclude
Read from a stream.- Throws:
IOException
-
-
Method Details
-
merge
-
parseInclude
public static IncludeExclude parseInclude(org.elasticsearch.common.xcontent.XContentParser parser) throws IOException- Throws:
IOException
-
parseExclude
public static IncludeExclude parseExclude(org.elasticsearch.common.xcontent.XContentParser parser) throws IOException- Throws:
IOException
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
isRegexBased
public boolean isRegexBased() -
isPartitionBased
public boolean isPartitionBased() -
convertToStringFilter
-
convertToOrdinalsFilter
-
convertToLongFilter
-
convertToDoubleFilter
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
IOException
-
hashCode
public int hashCode() -
equals
-