Uses of Interface
org.apache.lucene.search.CheckedIntConsumer
Packages that use CheckedIntConsumer
Package
Description
Code to search indices.
Some utility classes.
-
Uses of CheckedIntConsumer in org.apache.lucene.search
Methods in org.apache.lucene.search with parameters of type CheckedIntConsumerModifier and TypeMethodDescriptionabstract void
DocIdStream.forEach
(int upTo, CheckedIntConsumer<IOException> consumer) Iterate over doc IDs contained in this doc ID stream up to the givenupTo
exclusive, calling the givenCheckedIntConsumer
on them.void
DocIdStream.forEach
(CheckedIntConsumer<IOException> consumer) Iterate over doc IDs contained in this stream in order, calling the givenCheckedIntConsumer
on them. -
Uses of CheckedIntConsumer in org.apache.lucene.util
Methods in org.apache.lucene.util with parameters of type CheckedIntConsumerModifier and TypeMethodDescriptionvoid
FixedBitSet.forEach
(int from, int to, int base, CheckedIntConsumer<IOException> consumer) For each set bit fromfrom
inclusive toto
exclusive, addbase
to the bit index and callconsumer
on it.