Class OrderedMap.OrderedMapValues<V>

  • All Implemented Interfaces:
    java.lang.Iterable<V>, java.util.Iterator<V>
    Enclosing class:
    OrderedMap<K,​V>

    public static class OrderedMap.OrderedMapValues<V>
    extends ObjectMap.Values<V>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      V next()  
      void remove()  
      void reset()  
      Array<V> toArray()
      Returns a new array containing the remaining values.
      Array<V> toArray​(Array<V> array)
      Adds the remaining values to the specified array.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
      • Methods inherited from interface java.util.Iterator

        forEachRemaining
    • Constructor Detail

      • OrderedMapValues

        public OrderedMapValues​(OrderedMap<?,​V> map)
    • Method Detail

      • reset

        public void reset()
      • next

        public V next()
        Specified by:
        next in interface java.util.Iterator<V>
        Overrides:
        next in class ObjectMap.Values<V>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<V>