add toString() method

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1491299 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2013-06-09 21:39:00 +00:00
parent 12dd8014dd
commit 7f90c7f8ea
1 changed files with 5 additions and 0 deletions

View File

@ -213,6 +213,11 @@ public class PackedInts {
this.format = format;
this.bitsPerValue = bitsPerValue;
}
@Override
public String toString() {
return "FormatAndBits(format=" + format + " bitsPerValue=" + bitsPerValue + ")";
}
}
/**