Class CharArrayMap.UnmodifiableCharArrayMap<V>

    • Constructor Detail

      • UnmodifiableCharArrayMap

        UnmodifiableCharArrayMap​(CharArrayMap<V> map)
    • Method Detail

      • clear

        public void clear()
        Description copied from class: CharArrayMap
        Clears all entries in this map. This method is supported for reusing, but not Map.remove(java.lang.Object).
        Specified by:
        clear in interface java.util.Map<java.lang.Object,​V>
        Overrides:
        clear in class CharArrayMap<V>
      • put

        public V put​(java.lang.Object o,
                     V val)
        Specified by:
        put in interface java.util.Map<java.lang.Object,​V>
        Overrides:
        put in class CharArrayMap<V>
      • put

        public V put​(char[] text,
                     V val)
        Description copied from class: CharArrayMap
        Add the given mapping. If ignoreCase is true for this Set, the text array will be directly modified. The user should never modify this text array after calling this method.
        Overrides:
        put in class CharArrayMap<V>
      • put

        public V put​(java.lang.CharSequence text,
                     V val)
        Description copied from class: CharArrayMap
        Add the given mapping.
        Overrides:
        put in class CharArrayMap<V>
      • put

        public V put​(java.lang.String text,
                     V val)
        Description copied from class: CharArrayMap
        Add the given mapping.
        Overrides:
        put in class CharArrayMap<V>
      • remove

        public V remove​(java.lang.Object key)
        Specified by:
        remove in interface java.util.Map<java.lang.Object,​V>
        Overrides:
        remove in class CharArrayMap<V>