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

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

Introduction

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

The text is from its open source code.

Constructor

SequencedHashMap()
Construct a new sequenced hash map with default initial size and load factor.
SequencedHashMap(int initialSize, float loadFactor)
Construct a new sequenced hash map with the specified initial size and load factor.

Method

Objectget(Object o)
Implements Map#get(Object) .
Objectget(int index)
Gets the key at the specified index.
Map.EntrygetFirst()
Return the entry for the "oldest" mapping.
Iteratoriterator()
Gets an iterator over the keys.
Objectput(Object key, Object value)
Implements Map#put(Object,Object) .
Objectremove(Object key)
Implements Map#remove(Object) .
Objectremove(int index)
Removes the element at the specified index.
intsize()
Implements Map#size() .
Collectionvalues()
Implements Map#values() .