Returns the token length of the inlined value. @param value inlined value @return length of unpacked token
(final long value)
| 125 | * @return length of unpacked token |
| 126 | */ |
| 127 | public static int unpackLength(final long value) { |
| 128 | return (value & STRING) == 0 ? numDigits((int) value) : (int) (value >> 32) & 0x0F; |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Indicates if the specified value is inlined. |