/**
  * Maps the specified key to the specified value in this table. The key can not be null. The value
  * can be retrieved by calling the get method with a key that is equal to the original key.
  *
  * @param key the key
  * @param value the value
  * @throws IllegalArgumentException if key is null
  */
 public static void putBoolean(String key, boolean value) {
   table.putBoolean(key, value);
 }