(int position, short val)
| 163 | } |
| 164 | |
| 165 | public ByteBuffer putShort(int position, short val) { |
| 166 | checkPut(position, 2, true); |
| 167 | |
| 168 | rawPutShort(position, val); |
| 169 | |
| 170 | return this; |
| 171 | } |
| 172 | |
| 173 | public ByteBuffer putLong(long val) { |
| 174 | checkPut(position, 8, false); |