Class RedissonListIterator<V>

  • Type Parameters:
    V - value type
    All Implemented Interfaces:
    <V>, <V>

    public abstract class RedissonListIterator<V>
    extends 
    implements <V>
    Author:
    Nikita Koksharov
    • Constructor Detail

      • RedissonListIterator

        public RedissonListIterator​(int startIndex)
    • Method Detail

      • getValue

        public abstract V getValue​(int index)
      • remove

        public abstract V remove​(int index)
      • fastSet

        public abstract void fastSet​(int index,
                                     V value)
      • add

        public abstract void add​(int index,
                                 V value)
      • hasNext

        public boolean hasNext()
        Specified by:
         in interface <V>
        Specified by:
         in interface <V>
      • next

        public V next()
        Specified by:
         in interface <V>
        Specified by:
         in interface <V>
      • remove

        public void remove()
        Specified by:
         in interface <V>
        Specified by:
         in interface <V>
      • hasPrevious

        public boolean hasPrevious()
        Specified by:
         in interface <V>
      • previous

        public V previous()
        Specified by:
         in interface <V>
      • nextIndex

        public int nextIndex()
        Specified by:
         in interface <V>
      • previousIndex

        public int previousIndex()
        Specified by:
         in interface <V>
      • set

        public void set​(V e)
        Specified by:
         in interface <V>
      • add

        public void add​(V e)
        Specified by:
         in interface <V>