Class IncludeExclude
java.lang.Object
org.elasticsearch.search.aggregations.bucket.terms.IncludeExclude
- All Implemented Interfaces:
Writeable
,ToXContent
,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
Modifier and TypeClassDescriptionstatic class
static class
static class
class
static class
static class
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ParseField
static final ParseField
static final ParseField
static final ParseField
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionIncludeExclude
(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) Read from a stream.IncludeExclude
(RegExp include, RegExp exclude) IncludeExclude
(RegExp include, RegExp exclude, SortedSet<org.apache.lucene.util.BytesRef> includeValues, SortedSet<org.apache.lucene.util.BytesRef> excludeValues) -
Method Summary
Modifier and TypeMethodDescriptionconvertToLongFilter
(DocValueFormat format) convertToStringFilter
(DocValueFormat format) boolean
int
hashCode()
boolean
boolean
static IncludeExclude
merge
(IncludeExclude include, IncludeExclude exclude) static IncludeExclude
parseExclude
(XContentParser parser) static IncludeExclude
parseInclude
(XContentParser parser) toXContent
(XContentBuilder builder, ToXContent.Params params) void
writeTo
(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.elasticsearch.xcontent.ToXContentFragment
isFragment
-
Field Details
-
INCLUDE_FIELD
-
EXCLUDE_FIELD
-
PARTITION_FIELD
-
NUM_PARTITIONS_FIELD
-
-
Constructor Details
-
IncludeExclude
- 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
- Throws:
IOException
-
parseExclude
- Throws:
IOException
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
isRegexBased
public boolean isRegexBased() -
isPartitionBased
public boolean isPartitionBased() -
convertToStringFilter
-
convertToOrdinalsFilter
-
convertToLongFilter
-
convertToDoubleFilter
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceToXContent
- Throws:
IOException
-
hashCode
public int hashCode() -
equals
-