Java org.apache.commons.collections MapIterator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections MapIterator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections MapIterator.

The text is from its open source code.

Method

ObjectgetKey()
Gets the current key, which is the key returned by the last call to next().
ObjectgetValue()
Gets the current value, which is the value associated with the last key returned by next().
booleanhasNext()
Checks to see if there are more entries still to be iterated.
Objectnext()
Gets the next key from the Map.
voidremove()
Removes the last returned key from the underlying Map (optional operation).
ObjectsetValue(Object value)
Sets the value associated with the current key (optional operation).