Module org.elasticsearch.server
Record Class BucketCollector.BucketCollectorWrapper
java.lang.Object
java.lang.Record
org.elasticsearch.search.aggregations.BucketCollector.BucketCollectorWrapper
- All Implemented Interfaces:
org.apache.lucene.search.Collector,TwoPhaseCollector
- Enclosing class:
BucketCollector
public static record BucketCollector.BucketCollectorWrapper(BucketCollector bucketCollector)
extends Record
implements TwoPhaseCollector
-
Constructor Summary
ConstructorsConstructorDescriptionBucketCollectorWrapper(BucketCollector bucketCollector) Creates an instance of aBucketCollectorWrapperrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebucketCollectorrecord component.voidrun post-collection phasefinal booleanIndicates whether some other object is "equal to" this one.org.apache.lucene.search.LeafCollectorgetLeafCollector(org.apache.lucene.index.LeafReaderContext context) final inthashCode()Returns a hash code value for this object.org.apache.lucene.search.ScoreModefinal StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.lucene.search.Collector
setWeight
-
Constructor Details
-
BucketCollectorWrapper
Creates an instance of aBucketCollectorWrapperrecord class.- Parameters:
bucketCollector- the value for thebucketCollectorrecord component
-
-
Method Details
-
getLeafCollector
public org.apache.lucene.search.LeafCollector getLeafCollector(org.apache.lucene.index.LeafReaderContext context) throws IOException - Specified by:
getLeafCollectorin interfaceorg.apache.lucene.search.Collector- Throws:
IOException
-
scoreMode
public org.apache.lucene.search.ScoreMode scoreMode()- Specified by:
scoreModein interfaceorg.apache.lucene.search.Collector
-
doPostCollection
Description copied from interface:TwoPhaseCollectorrun post-collection phase- Specified by:
doPostCollectionin interfaceTwoPhaseCollector- Throws:
IOException
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
bucketCollector
Returns the value of thebucketCollectorrecord component.- Returns:
- the value of the
bucketCollectorrecord component
-