Checks if a certain key is used in this DataBlock @param key The key @return Whether the key is used
(String key)
| 148 | * @return Whether the key is used |
| 149 | */ |
| 150 | public boolean contains(String key) { |
| 151 | return data.containsKey(key); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Clears all data from this DataBlock |