Class ScriptDocValues<T>

    • Field Summary

      • Fields inherited from class java.util.AbstractList

        modCount
    • Constructor Summary

      Constructors 
      Constructor Description
      ScriptDocValues()  
    • Method Summary

      Modifier and Type Method Description
      void add​(int index, T element)  
      boolean remove​(java.lang.Object o)  
      void replaceAll​(java.util.function.UnaryOperator<T> operator)  
      T set​(int index, T element)  
      abstract void setNextDocId​(int docId)
      Set the current doc ID.
      void sort​(java.util.Comparator<? super T> c)  
      • Methods inherited from class java.util.AbstractList

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

        addAll, contains, containsAll, isEmpty, removeAll, retainAll, size, 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, size, spliterator, toArray, toArray
    • Constructor Detail

      • ScriptDocValues

        public ScriptDocValues()
    • Method Detail

      • setNextDocId

        public abstract void setNextDocId​(int docId)
                                   throws java.io.IOException
        Set the current doc ID.
        Throws:
        java.io.IOException
      • add

        public final void add​(int index,
                              T element)
        Specified by:
        add in interface java.util.List<T>
        Overrides:
        add in class java.util.AbstractList<T>
      • remove

        public final boolean remove​(java.lang.Object o)
        Specified by:
        remove in interface java.util.Collection<T>
        Specified by:
        remove in interface java.util.List<T>
        Overrides:
        remove in class java.util.AbstractCollection<T>
      • replaceAll

        public final void replaceAll​(java.util.function.UnaryOperator<T> operator)
      • set

        public final T set​(int index,
                           T element)
        Specified by:
        set in interface java.util.List<T>
        Overrides:
        set in class java.util.AbstractList<T>
      • sort

        public final void sort​(java.util.Comparator<? super T> c)