(int index, long value)
| 173 | } |
| 174 | |
| 175 | @Override |
| 176 | public ByteBuffer putLong(int index, long value) { |
| 177 | if (index < 0 || (long) index + 8 > limit) { |
| 178 | throw new IndexOutOfBoundsException(); |
| 179 | } |
| 180 | store(index, value); |
| 181 | return this; |
| 182 | } |
| 183 | |
| 184 | @Override |
| 185 | public ByteBuffer putLong(long value) { |