org.thymeleaf.context
Class VariablesMap<K,V>

Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.HashMap<K,V>
          extended by java.util.LinkedHashMap<K,V>
              extended by org.thymeleaf.context.VariablesMap<K,V>
All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>

public class VariablesMap<K,V>
extends LinkedHashMap<K,V>

Special implementation of the Map interface that will be used for containing context variables in IContext implementations.

Constructors in this class mimic those in LinkedHashMap and have the same meaning.

Since:
1.0
Author:
Daniel Fernández
See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
 
Constructor Summary
VariablesMap()
           
VariablesMap(int initialCapacity)
           
VariablesMap(int initialCapacity, float loadFactor)
           
VariablesMap(int initialCapacity, float loadFactor, boolean accessOrder)
           
VariablesMap(Map<? extends K,? extends V> m)
           
 
Method Summary
 
Methods inherited from class java.util.LinkedHashMap
clear, containsValue, get, removeEldestEntry
 
Methods inherited from class java.util.HashMap
clone, containsKey, entrySet, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
containsKey, entrySet, equals, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 

Constructor Detail

VariablesMap

public VariablesMap()

VariablesMap

public VariablesMap(int initialCapacity,
                    float loadFactor,
                    boolean accessOrder)

VariablesMap

public VariablesMap(int initialCapacity,
                    float loadFactor)

VariablesMap

public VariablesMap(int initialCapacity)

VariablesMap

public VariablesMap(Map<? extends K,? extends V> m)


Copyright © 2011 The THYMELEAF team. All Rights Reserved.