パッケージ | 説明 |
---|---|
java.nio |
データのコンテナであるバッファについて定義し、その他のNIOパッケージの概要情報を提供します。
|
修飾子と型 | メソッドと説明 |
---|---|
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メソッドです (オプションの操作)。
|
IntBuffer |
IntBuffer.put(IntBuffer src)
相対一括putメソッドです (オプションの操作)。
|
abstract IntBuffer |
IntBuffer.put(int index, int i)
絶対putメソッドです (オプションの操作)。
|
abstract IntBuffer |
IntBuffer.slice()
現在のバッファのコンテンツの共有のサブシーケンスをコンテンツとする新しいintバッファを作成します。
|
static IntBuffer |
IntBuffer.wrap(int[] array)
int配列をバッファにラップします。
|
static IntBuffer |
IntBuffer.wrap(int[] array, int offset, int length)
int配列をバッファにラップします。
|
修飾子と型 | メソッドと説明 |
---|---|
int |
IntBuffer.compareTo(IntBuffer that)
このバッファを別のバッファと比較します。
|
IntBuffer |
IntBuffer.put(IntBuffer src)
相対一括putメソッドです (オプションの操作)。
|
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.