Stores the specified key if it has not been stored before. @param key key to be added @return true if the key did not exist yet and was stored
(final byte[] key)
| 90 | * @return {@code true} if the key did not exist yet and was stored |
| 91 | */ |
| 92 | public final boolean add(final byte[] key) { |
| 93 | return store(key) > 0; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Stores the specified string as key if it has not been stored before. |
no test coverage detected