This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new d12bf64ae Javadoc
d12bf64ae is described below

commit d12bf64ae02cdf7e60078f1fe739502174298420
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Oct 6 23:12:41 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/io/RandomAccessFileMode.java   | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/main/java/org/apache/commons/io/RandomAccessFileMode.java 
b/src/main/java/org/apache/commons/io/RandomAccessFileMode.java
index 8b51e439b..a8d61aa17 100644
--- a/src/main/java/org/apache/commons/io/RandomAccessFileMode.java
+++ b/src/main/java/org/apache/commons/io/RandomAccessFileMode.java
@@ -25,29 +25,43 @@ import java.util.Objects;
 /**
  * Access modes and factory methods for {@link RandomAccessFile}.
  *
+ * @see RandomAccessFile#RandomAccessFile(File, String)
+ * @see RandomAccessFile#RandomAccessFile(String, String)
  * @since 2.12.0
  */
 public enum RandomAccessFileMode {
 
     /**
      * Mode {@code "r"} opens for reading only.
+     *
+     * @see RandomAccessFile#RandomAccessFile(File, String)
+     * @see RandomAccessFile#RandomAccessFile(String, String)
      */
     READ_ONLY("r"),
 
     /**
      * Mode {@code "rw"} opens for reading and writing.
+     *
+     * @see RandomAccessFile#RandomAccessFile(File, String)
+     * @see RandomAccessFile#RandomAccessFile(String, String)
      */
     READ_WRITE("rw"),
 
     /**
      * Mode {@code "rws"} opens for reading and writing, as with {@code "rw"}, 
and also require that every update to the file's content or metadata be written
      * synchronously to the underlying storage device.
+     *
+     * @see RandomAccessFile#RandomAccessFile(File, String)
+     * @see RandomAccessFile#RandomAccessFile(String, String)
      */
     READ_WRITE_SYNC_ALL("rws"),
 
     /**
      * Mode {@code "rwd"} open for reading and writing, as with {@code "rw"}, 
and also require that every update to the file's content be written 
synchronously
      * to the underlying storage device.
+     *
+     * @see RandomAccessFile#RandomAccessFile(File, String)
+     * @see RandomAccessFile#RandomAccessFile(String, String)
      */
     READ_WRITE_SYNC_CONTENT("rwd");
 

Reply via email to