Class ScriptableLinkedHashMap<K,​V>

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, java.util.Map<K,​V>, org.mozilla.javascript.Scriptable, ScriptableMap<K,​V>

    public class ScriptableLinkedHashMap<K,​V>
    extends java.util.LinkedHashMap<K,​V>
    implements ScriptableMap<K,​V>
    Implementation of a Scriptable Map. This is the best choice for maps that want to represent JavaScript associative arrays - allowing access via key and integer index. It maintains and respects insertion order of the elements and allows either string or integer keys.
    Author:
    Kevin Roast
    See Also:
    Serialized Form
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.util.AbstractMap

        java.util.AbstractMap.SimpleEntry<K extends java.lang.Object,​V extends java.lang.Object>, java.util.AbstractMap.SimpleImmutableEntry<K extends java.lang.Object,​V extends java.lang.Object>
      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Field Summary

      • Fields inherited from interface org.mozilla.javascript.Scriptable

        NOT_FOUND
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void delete​(int index)  
      void delete​(java.lang.String name)  
      java.lang.Object get​(int index, org.mozilla.javascript.Scriptable start)  
      java.lang.Object get​(java.lang.String name, org.mozilla.javascript.Scriptable start)  
      java.lang.String getClassName()  
      java.lang.Object getDefaultValue​(java.lang.Class hint)  
      java.lang.Object[] getIds()  
      org.mozilla.javascript.Scriptable getParentScope()  
      org.mozilla.javascript.Scriptable getPrototype()  
      boolean has​(int index, org.mozilla.javascript.Scriptable start)  
      boolean has​(java.lang.String name, org.mozilla.javascript.Scriptable start)  
      boolean hasInstance​(org.mozilla.javascript.Scriptable instance)  
      void put​(int index, org.mozilla.javascript.Scriptable start, java.lang.Object value)  
      void put​(java.lang.String name, org.mozilla.javascript.Scriptable start, java.lang.Object value)  
      void setParentScope​(org.mozilla.javascript.Scriptable parent)  
      void setPrototype​(org.mozilla.javascript.Scriptable prototype)  
      • Methods inherited from class java.util.LinkedHashMap

        clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, values
      • Methods inherited from class java.util.HashMap

        clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
      • Methods inherited from class java.util.AbstractMap

        equals, hashCode, toString
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Map

        clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
    • Constructor Detail

      • ScriptableLinkedHashMap

        public ScriptableLinkedHashMap()
      • ScriptableLinkedHashMap

        public ScriptableLinkedHashMap​(int initialCapacity)
      • ScriptableLinkedHashMap

        public ScriptableLinkedHashMap​(java.util.Map<K,​V> source)
    • Method Detail

      • getClassName

        public java.lang.String getClassName()
        Specified by:
        getClassName in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.getClassName()
      • get

        public java.lang.Object get​(java.lang.String name,
                                    org.mozilla.javascript.Scriptable start)
        Specified by:
        get in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.get(java.lang.String, org.mozilla.javascript.Scriptable)
      • get

        public java.lang.Object get​(int index,
                                    org.mozilla.javascript.Scriptable start)
        Specified by:
        get in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.get(int, org.mozilla.javascript.Scriptable)
      • has

        public boolean has​(java.lang.String name,
                           org.mozilla.javascript.Scriptable start)
        Specified by:
        has in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.has(java.lang.String, org.mozilla.javascript.Scriptable)
      • has

        public boolean has​(int index,
                           org.mozilla.javascript.Scriptable start)
        Specified by:
        has in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.has(int, org.mozilla.javascript.Scriptable)
      • put

        public void put​(java.lang.String name,
                        org.mozilla.javascript.Scriptable start,
                        java.lang.Object value)
        Specified by:
        put in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.put(java.lang.String, org.mozilla.javascript.Scriptable, java.lang.Object)
      • put

        public void put​(int index,
                        org.mozilla.javascript.Scriptable start,
                        java.lang.Object value)
        Specified by:
        put in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.put(int, org.mozilla.javascript.Scriptable, java.lang.Object)
      • delete

        public void delete​(java.lang.String name)
        Specified by:
        delete in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.delete(java.lang.String)
      • delete

        public void delete​(int index)
        Specified by:
        delete in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.delete(int)
      • getPrototype

        public org.mozilla.javascript.Scriptable getPrototype()
        Specified by:
        getPrototype in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.getPrototype()
      • setPrototype

        public void setPrototype​(org.mozilla.javascript.Scriptable prototype)
        Specified by:
        setPrototype in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.setPrototype(org.mozilla.javascript.Scriptable)
      • getParentScope

        public org.mozilla.javascript.Scriptable getParentScope()
        Specified by:
        getParentScope in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.getParentScope()
      • setParentScope

        public void setParentScope​(org.mozilla.javascript.Scriptable parent)
        Specified by:
        setParentScope in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.setParentScope(org.mozilla.javascript.Scriptable)
      • getIds

        public java.lang.Object[] getIds()
        Specified by:
        getIds in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.getIds()
      • getDefaultValue

        public java.lang.Object getDefaultValue​(java.lang.Class hint)
        Specified by:
        getDefaultValue in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.getDefaultValue(java.lang.Class)
      • hasInstance

        public boolean hasInstance​(org.mozilla.javascript.Scriptable instance)
        Specified by:
        hasInstance in interface org.mozilla.javascript.Scriptable
        See Also:
        Scriptable.hasInstance(org.mozilla.javascript.Scriptable)