Searched defs:next (Results 1 - 25 of 116) sorted by relevance

12345

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DScoredDocIDsIterator.java21 * Iterator over document IDs and their scores. Each {@link #next()} retrieves
22 * the next docID and its score which can be later be retrieved by
24 * {@link #next()} before {@link #getDocID()} and/or {@link #getScore()}, or
34 /** Iterate to the next document/score pair. Returns true iff there is such a pair. */
35 public abstract boolean next(); method in interface:ScoredDocIDsIterator
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/
H A DDoubleIterator.java28 double next(); method in interface:DoubleIterator
H A DFloatIterator.java28 float next(); method in interface:FloatIterator
H A DIntIterator.java28 int next(); method in interface:IntIterator
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DTermEnum.java29 /** Increments the enumeration to the next element. True if one exists.*/
30 public abstract boolean next() throws IOException; method in class:TermEnum
H A DDocFieldProcessorPerField.java31 DocFieldProcessorPerField next; field in class:DocFieldProcessorPerField
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DBytesRefIterator.java29 * Increments the iteration to the next {@link BytesRef} in the iterator.
32 * to next. After this method returns null, do not call it again: the results
35 * @return the next {@link BytesRef} in the iterator or <code>null</code> if
39 public BytesRef next() throws IOException; method in interface:BytesRefIterator
53 public BytesRef next() throws IOException {
H A DSimpleStringInterner.java32 private Entry next; field in class:SimpleStringInterner.Entry
33 private Entry(String str, int hash, Entry next) { argument
36 this.next = next;
64 for(Entry e=first; e!=null; e=e.next) {
71 if (e.next != null) {
81 nextToLast.next = null;
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestRamUsageEstimatorOnWildAnimals.java27 ListElement next; field in class:TestRamUsageEstimatorOnWildAnimals.ListElement
41 last = (last.next = new ListElement());
H A DStressRamUsageEstimator.java38 Entry next; field in class:StressRamUsageEstimator.Entry
43 e.next = next;
44 this.next = e;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DSmartRandom.java34 protected int next(int bits) { method in class:SmartRandom
41 return super.next(bits);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DSmartRandom.java34 protected int next(int bits) { method in class:SmartRandom
41 return super.next(bits);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/attributes/
H A DCategoryAttributesIterable.java58 public CategoryAttribute next() { method in class:CategoryAttributesIterable.CategoryAttributesIterator
60 .next());
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DInstantiatedTermEnum.java37 next();
44 * Increments the enumeration to the next element. True if one exists.
47 public boolean next() { method in class:InstantiatedTermEnum
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/spell/
H A DPlainTextDictionary.java64 public BytesRef next() throws IOException { method in class:PlainTextDictionary.FileIterator
H A DTermFreqIterator.java48 public BytesRef next() throws IOException { method in class:TermFreqIterator.TermFreqIteratorWrapper
49 return wrapped.next();
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/
H A DBufferingTermFreqIteratorWrapper.java41 while((spare = source.next()) != null) {
56 public BytesRef next() throws IOException { method in class:BufferingTermFreqIteratorWrapper
H A DUnsortedTermFreqIteratorWrapper.java57 public BytesRef next() throws IOException { method in class:UnsortedTermFreqIteratorWrapper
/lucene-3.6.0/lucene/contrib/spellchecker/src/test/org/apache/lucene/search/suggest/
H A DTermFreqArrayIterator.java53 public BytesRef next() throws IOException { method in class:TermFreqArrayIterator
55 current = i.next();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DFilteredTermEnum.java56 else next();
70 /** Increments the enumeration to the next element. True if one exists. */
72 public boolean next() throws IOException { method in class:FilteredTermEnum
77 if (actualEnum.next()) {
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpans.java28 /** Move to the next match, returning true iff any such exists. */
29 public abstract boolean next() throws IOException; method in class:Spans
36 * if (!next())
57 * This is invalid until {@link #next()} is called for
60 * of {@link #next()}. However, most payloads are loaded lazily,
81 * {@link #next()}.
/lucene-3.6.0/solr/contrib/langid/src/java/org/apache/solr/update/processor/
H A DLangDetectLanguageIdentifierUpdateProcessor.java41 SolrQueryResponse rsp, UpdateRequestProcessor next) {
42 super(req, rsp, next);
40 LangDetectLanguageIdentifierUpdateProcessor(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
H A DTikaLanguageIdentifierUpdateProcessor.java38 SolrQueryResponse rsp, UpdateRequestProcessor next) {
39 super(req, rsp, next);
37 TikaLanguageIdentifierUpdateProcessor(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
H A DTikaLanguageIdentifierUpdateProcessorFactory.java84 SolrQueryResponse rsp, UpdateRequestProcessor next) {
89 return new TikaLanguageIdentifierUpdateProcessor(req, rsp, next);
83 getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
/lucene-3.6.0/solr/contrib/uima/src/java/org/apache/solr/uima/processor/
H A DUIMAUpdateRequestProcessorFactory.java43 UpdateRequestProcessor next) {
44 return new UIMAUpdateRequestProcessor(next, req.getCore(),
42 getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument

Completed in 431 milliseconds

12345