Beispiel #1
0
 public boolean add(K key)
 {
     if (contains(key))
     {
         return(false);
     }
     map.put(key, unused);
     return(true);
 }
Beispiel #2
0
    public boolean add(Object key)
    {
        if (contains(key))
        {
            return(false);
        }

        map.put(key, UNUSED);
        return(true);
    }