remove static string compressor from QueryCompletionIndex
This commit is contained in:
@@ -6,6 +6,7 @@ package org.lucares.pdb.api;
|
||||
* 'Sam' is the value.
|
||||
*/
|
||||
public class Tag implements Comparable<Tag> {
|
||||
|
||||
private final int field;
|
||||
|
||||
private final int value;
|
||||
@@ -42,6 +43,10 @@ public class Tag implements Comparable<Tag> {
|
||||
return value;
|
||||
}
|
||||
|
||||
public Tag unsetValue() {
|
||||
return new Tag(field, -1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return field + "=" + value;
|
||||
|
||||
Reference in New Issue
Block a user