Schnittstelle CharArrayMapper<V>

Alle Superschnittstellen:
Cloneable
Alle bekannten Implementierungsklassen:
CharArrayHashMap, CharArrayMap, CharDelegateMap, HashtableOfPackage

public interface CharArrayMapper<V> extends Cloneable
  • Methodendetails

    • containsKey

      boolean containsKey(char[] key)
    • get

      V get(char[] key)
    • put

      V put(char[] key, V value)
      Gibt zurück:
      the previous value
    • size

      int size()
      Gibt zurück:
      the number of keys
    • values

      Collection<V> values()
      Returns a copied collection of values.
      Gibt zurück:
      all values in undefined order. The order is not guaranteed to be stable.
    • keys

      Collection<char[]> keys()
      Returns a copied collection of keys.
      Gibt zurück:
      all keys in undefined order. The order is not guaranteed to be stable.
    • toString

      static <V> String toString(CharArrayMapper<V> map)