Indexes the specified key and ID. @param key key to be indexed @param id ID to be indexed @param pos token position (only relevant for token index)
(final byte[] key, final int id, final int pos)
| 50 | * @param pos token position (only relevant for token index) |
| 51 | */ |
| 52 | public final void add(final byte[] key, final int id, final int pos) { |
| 53 | add(key, id, pos, true); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Indexes the specified key and ID. If the key has already been |
nothing calls this directly
no test coverage detected