We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640f3d8 commit 8e95ddfCopy full SHA for 8e95ddf
1 file changed
src/main/java/org/apache/commons/io/RandomAccessFileMode.java
@@ -20,6 +20,7 @@
20
import java.io.FileNotFoundException;
21
import java.io.RandomAccessFile;
22
import java.nio.file.Path;
23
+import java.nio.file.StandardOpenOption;
24
import java.util.Objects;
25
26
/**
@@ -53,6 +54,7 @@ public enum RandomAccessFileMode {
53
54
*
55
* @see RandomAccessFile#RandomAccessFile(File, String)
56
* @see RandomAccessFile#RandomAccessFile(String, String)
57
+ * @see StandardOpenOption#SYNC
58
*/
59
READ_WRITE_SYNC_ALL("rws"),
60
@@ -62,6 +64,7 @@ public enum RandomAccessFileMode {
62
64
63
65
66
67
+ * @see StandardOpenOption#DSYNC
68
69
READ_WRITE_SYNC_CONTENT("rwd");
70
0 commit comments