Interface CharMap<V>


public interface CharMap<V>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    containsKey(char key)
     
    void
    get(char key)
     
    boolean
     
    put(char key, V value)
     
    remove(char key)
     
  • Method Details

    • isEmpty

      boolean isEmpty()
    • containsKey

      boolean containsKey(char key)
    • get

      void get(char key)
    • put

      V put(char key, V value)
    • remove

      V remove(char key)