- java.lang.Object
-
- java.nio.channels.FileChannel.MapMode
-
- 含まれているクラス:
- FileChannel
public static class FileChannel.MapMode extends Object
ファイル・マッピング・モードの型保証された列挙です。- 導入されたバージョン:
- 1.4
- 関連項目:
FileChannel.map(java.nio.channels.FileChannel.MapMode, long, long)
-
-
フィールドのサマリー
フィールド 修飾子と型 フィールド 説明 static FileChannel.MapMode
PRIVATE
非公開(copy-on-write)マッピング用モードです。static FileChannel.MapMode
READ_ONLY
読込み専用マッピング用モードです。static FileChannel.MapMode
READ_WRITE
読み込み/書込みマッピング用モードです。
-
-
-
フィールドの詳細
-
READ_ONLY
public static final FileChannel.MapMode READ_ONLY
読込み専用マッピング用モードです。
-
READ_WRITE
public static final FileChannel.MapMode READ_WRITE
読み込み/書込みマッピング用モードです。
-
PRIVATE
public static final FileChannel.MapMode PRIVATE
非公開(copy-on-write)マッピング用モードです。
-
-