Class ScriptDocValues.Booleans

  • All Implemented Interfaces:
    java.lang.Iterable<java.lang.Boolean>, java.util.Collection<java.lang.Boolean>, java.util.List<java.lang.Boolean>
    Enclosing class:
    ScriptDocValues<T>

    public static final class ScriptDocValues.Booleans
    extends ScriptDocValues<java.lang.Boolean>
    • Constructor Summary

      Constructors 
      Constructor Description
      Booleans​(org.apache.lucene.index.SortedNumericDocValues in)  
      Booleans​(org.apache.lucene.index.SortedNumericDocValues in, java.util.function.BiConsumer<java.lang.String,​java.lang.String> deprecationCallback)  
    • Method Summary

      Modifier and Type Method Description
      java.lang.Boolean get​(int index)  
      boolean getValue()  
      protected void resize​(int newSize)
      Set the size() and ensure that the values array can store at least that many entries.
      void setNextDocId​(int docId)
      Set the current doc ID.
      int size()  
      • Methods inherited from class java.util.AbstractList

        add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, subList
      • Methods inherited from class java.util.AbstractCollection

        addAll, contains, containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        addAll, contains, containsAll, isEmpty, removeAll, retainAll, spliterator, toArray, toArray
    • Constructor Detail

      • Booleans

        public Booleans​(org.apache.lucene.index.SortedNumericDocValues in)
      • Booleans

        public Booleans​(org.apache.lucene.index.SortedNumericDocValues in,
                        java.util.function.BiConsumer<java.lang.String,​java.lang.String> deprecationCallback)
    • Method Detail

      • setNextDocId

        public void setNextDocId​(int docId)
                          throws java.io.IOException
        Description copied from class: ScriptDocValues
        Set the current doc ID.
        Specified by:
        setNextDocId in class ScriptDocValues<java.lang.Boolean>
        Throws:
        java.io.IOException
      • resize

        protected void resize​(int newSize)
        Set the size() and ensure that the values array can store at least that many entries.
      • getValue

        public boolean getValue()
      • get

        public java.lang.Boolean get​(int index)
        Specified by:
        get in interface java.util.List<java.lang.Boolean>
        Specified by:
        get in class java.util.AbstractList<java.lang.Boolean>
      • size

        public int size()
        Specified by:
        size in interface java.util.Collection<java.lang.Boolean>
        Specified by:
        size in interface java.util.List<java.lang.Boolean>
        Specified by:
        size in class java.util.AbstractCollection<java.lang.Boolean>