Class IpScriptDocValues
java.lang.Object
org.elasticsearch.index.fielddata.SortedBinaryDocValues
org.elasticsearch.index.fielddata.IpScriptDocValues
public final class IpScriptDocValues extends SortedBinaryDocValues
-
Method Summary
Modifier and Type Method Description booleanadvanceExact(int docId)Advance this instance to the given document idintdocValueCount()Retrieves the number of values for the current document.org.apache.lucene.util.BytesRefnextValue()Iterates to the next value in the current document.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
advanceExact
public boolean advanceExact(int docId)Description copied from class:SortedBinaryDocValuesAdvance this instance to the given document id- Specified by:
advanceExactin classSortedBinaryDocValues- Returns:
- true if there is a value for this document
-
nextValue
public org.apache.lucene.util.BytesRef nextValue()Description copied from class:SortedBinaryDocValuesIterates to the next value in the current document. Do not call this more thanSortedBinaryDocValues.docValueCount()times for the document. Note that the returnedBytesRefmight be reused across invocations.- Specified by:
nextValuein classSortedBinaryDocValues
-
docValueCount
public int docValueCount()Description copied from class:SortedBinaryDocValuesRetrieves the number of values for the current document. This must always be greater than zero. It is illegal to call this method afterSortedBinaryDocValues.advanceExact(int)returnedfalse.- Specified by:
docValueCountin classSortedBinaryDocValues
-