(int position)
| 245 | } |
| 246 | |
| 247 | private short rawGetShort(int position) { |
| 248 | return (short) (( ((int) (doGet(position ) & 0xFF)) << 8) |
| 249 | | (((int) (doGet(position + 1) & 0xFF)) )); |
| 250 | } |
| 251 | |
| 252 | public long getLong() { |
| 253 | checkGet(position, 8, false); |