(int position, int val)
| 155 | } |
| 156 | |
| 157 | public ByteBuffer putInt(int position, int val) { |
| 158 | checkPut(position, 4, true); |
| 159 | |
| 160 | rawPutInt(position, val); |
| 161 | |
| 162 | return this; |
| 163 | } |
| 164 | |
| 165 | public ByteBuffer putShort(int position, short val) { |
| 166 | checkPut(position, 2, true); |