Java java.util LinkedHashMap fields, constructors, methods, implement or subclass

Example usage for Java java.util LinkedHashMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util LinkedHashMap.

The text is from its open source code.

Subclass

java.util.LinkedHashMap has subclasses.
Click this link to see all its subclasses.

Constructor

LinkedHashMap()
Constructs an empty insertion-ordered LinkedHashMap instance with the default initial capacity (16) and load factor (0.75).
LinkedHashMap(int initialCapacity)
Constructs an empty insertion-ordered LinkedHashMap instance with the specified initial capacity and a default load factor (0.75).
LinkedHashMap(Map m)
Constructs an insertion-ordered LinkedHashMap instance with the same mappings as the specified map.
LinkedHashMap(int initialCapacity, float loadFactor, boolean accessOrder)
Constructs an empty LinkedHashMap instance with the specified initial capacity, load factor and ordering mode.
LinkedHashMap(int initialCapacity, float loadFactor)
Constructs an empty insertion-ordered LinkedHashMap instance with the specified initial capacity and load factor.

Method

voidclear()
Objectclone()
Creates and returns a copy of this object.
VcomputeIfAbsent(K key, Function mappingFunction)
If the specified key is not already associated with a value (or is mapped to null ), attempts to compute its value using the given mapping function and enters it into this map unless null .
booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
booleancontainsValue(Object value)
Returns true if this map maps one or more keys to the specified value.
Set>entrySet()
Returns a Set view of the mappings contained in this map.
booleanequals(Object o)
Compares the specified object with this map for equality.
voidforEach(BiConsumer action)
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
ClassgetClass()
Returns the runtime class of this Object .
VgetOrDefault(Object key, V defaultValue)
inthashCode()
Returns the hash code value for this map.
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a Set view of the keys contained in this map.
Vput(K key, V value)
Associates the specified value with the specified key in this map (optional operation).
voidputAll(Map m)
Copies all of the mappings from the specified map to this map (optional operation).
VputIfAbsent(K key, V value)
If the specified key is not already associated with a value (or is mapped to null ) associates it with the given value and returns null , else returns the current value.
Vremove(Object key)
Removes the mapping for a key from this map if it is present (optional operation).
intsize()
Returns the number of key-value mappings in this map.
StringtoString()
Returns a string representation of the object.
Collectionvalues()
Returns a Collection view of the values contained in this map.