(int position, long val)
| 147 | } |
| 148 | |
| 149 | public ByteBuffer putLong(int position, long val) { |
| 150 | checkPut(position, 8, true); |
| 151 | |
| 152 | rawPutLong(position, val); |
| 153 | |
| 154 | return this; |
| 155 | } |
| 156 | |
| 157 | public ByteBuffer putInt(int position, int val) { |
| 158 | checkPut(position, 4, true); |