| static IntBuffer | IntBuffer. allocate(int capacity) | 新しいintバッファを割り当てます。 | 
| abstract IntBuffer | ByteBuffer. asIntBuffer() | intバッファとしてこのbyteバッファのビューを作成します。 | 
| abstract IntBuffer | IntBuffer. asReadOnlyBuffer() | このバッファの内容を共有する新しい読込み専用intバッファを作成します。 | 
| abstract IntBuffer | IntBuffer. compact() | このバッファを圧縮します  (オプションの操作)。 | 
| abstract IntBuffer | IntBuffer. duplicate() | このバッファの内容を共有する新しいintバッファを作成します。 | 
| IntBuffer | IntBuffer. get(int[] dst) | 相対一括getメソッドです。 | 
| IntBuffer | IntBuffer. get(int[] dst, int offset, int length) | 相対一括getメソッドです。 | 
| abstract IntBuffer | IntBuffer. put(int i) | 相対putメソッドです  (オプションの操作)。 | 
| IntBuffer | IntBuffer. put(int[] src) | 相対一括putメソッドです  (オプションの操作)。 | 
| IntBuffer | IntBuffer. put(int[] src, int offset, int length) | 相対一括putメソッドです  (オプションの操作)。 | 
| abstract IntBuffer | IntBuffer. put(int index, int i) | 絶対putメソッドです  (オプションの操作)。 | 
| IntBuffer | IntBuffer. put(IntBuffer src) | 相対一括putメソッドです  (オプションの操作)。 | 
| abstract IntBuffer | IntBuffer. slice() | このバッファの内容の共有のサブシーケンスを内容とする新しいintバッファを作成します。 | 
| static IntBuffer | IntBuffer. wrap(int[] array) | int配列をバッファにラップします。 | 
| static IntBuffer | IntBuffer. wrap(int[] array, int offset, int length) | int配列をバッファにラップします。 |