Package generic.stl

Class ReverseMapIteratorSTL<K,​V>

    • Method Detail

      • delete

        public void delete()
      • delete

        public void delete​(int count)
      • insert

        public void insert​(Pair<K,​V> value)
        Description copied from interface: IteratorSTL
        Inserts the given value at the current position (the current value will be pushed to the next value). The iterator will be positioned on the new value.
        Specified by:
        insert in interface IteratorSTL<K>
        Overrides:
        insert in class MapIteratorSTL<K,​V>
        Parameters:
        value - the value to insert into the collection.
      • isBegin

        public boolean isBegin()
        Description copied from interface: IteratorSTL
        Returns true if the iterator is positioned on the first first element of the collection. If the collection is empty, this will always return false.
        Specified by:
        isBegin in interface IteratorSTL<K>
        Overrides:
        isBegin in class MapIteratorSTL<K,​V>
        Returns:
        true if the iterator is positioned on the first element of the collection.
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class MapIteratorSTL<K,​V>