()
| 64 | } |
| 65 | |
| 66 | @Override |
| 67 | public String toString() { |
| 68 | StringBuilder out = new StringBuilder(); |
| 69 | out.append('{'); |
| 70 | for (int i = 0; i < size; ++i) { |
| 71 | if (i != 0) { |
| 72 | out.append(", "); |
| 73 | } |
| 74 | out.append(densePcs[i]); |
| 75 | } |
| 76 | out.append('}'); |
| 77 | return out.toString(); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | // Corresponding compiled regexp. |