Package org.apache.commons.io
Enum RandomAccessFileMode
- All Implemented Interfaces:
Serializable
,Comparable<RandomAccessFileMode>
Enumerates access modes for
RandomAccessFile
with factory methods.- Since:
- 2.12.0
- See Also:
-
Enum Constant Summary
Enum ConstantDescriptionDefines mode "r" to open aRandomAccessFile
for reading only.Defines mode "rw" to open aRandomAccessFile
for reading and writing.Defines mode "rws" to open aRandomAccessFile
for reading and writing, as with "rw", and also require that every update to the file's content or metadata be written synchronously to the underlying storage device.Defines mode "rwd" to open aRandomAccessFile
for reading and writing, as with "rw", and also require that every update to the file's content be written synchronously to the underlying storage device. -
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(Path file, IOConsumer<RandomAccessFile> consumer) Performs an operation on theRandomAccessFile
specified at the givenPath
.<T> T
apply
(Path file, IOFunction<RandomAccessFile, T> function) Applies the given function for aRandomAccessFile
specified at the givenPath
.Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.getMode()
Gets the access mode, one of "r", "rw", "rwd", or "rws".boolean
implies
(RandomAccessFileMode other) Tests whether this mode implies the givenother
mode.Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.static RandomAccessFileMode
Returns the enum constant of this type with the specified name.static RandomAccessFileMode
valueOf
(OpenOption... openOption) Gets the enum value that best fits the givenOpenOption
s.static RandomAccessFileMode
valueOfMode
(String mode) Gets theRandomAccessFileMode
value for the given mode, one of "r", "rw", "rwd", or "rws".static RandomAccessFileMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
READ_ONLY
Defines mode "r" to open aRandomAccessFile
for reading only. -
READ_WRITE
Defines mode "rw" to open aRandomAccessFile
for reading and writing. -
READ_WRITE_SYNC_ALL
Defines mode "rws" to open aRandomAccessFile
for reading and writing, as with "rw", and also require that every update to the file's content or metadata be written synchronously to the underlying storage device. -
READ_WRITE_SYNC_CONTENT
Defines mode "rwd" to open aRandomAccessFile
for reading and writing, as with "rw", and also require that every update to the file's content be written synchronously to the underlying storage device.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
Gets the enum value that best fits the givenOpenOption
s.The input must be a legal and working combination for NIO.
- Parameters:
openOption
- options likeStandardOpenOption
.- Returns:
- best fit, by default
READ_ONLY
. - Since:
- 2.18.0
- See Also:
-
valueOfMode
Gets theRandomAccessFileMode
value for the given mode, one of "r", "rw", "rwd", or "rws".- Parameters:
mode
- one of "r", "rw", "rwd", or "rws".- Returns:
- A RandomAccessFileMode.
- Throws:
IllegalArgumentException
- Thrown when mode is not one of "r", "rw", "rwd", or "rws".- Since:
- 2.18.0
-
accept
Performs an operation on theRandomAccessFile
specified at the givenPath
.This method allocates and releases the
RandomAccessFile
given to the consumer.- Parameters:
file
- the file specifying theRandomAccessFile
to open.consumer
- the function to apply.- Throws:
FileNotFoundException
- SeeIORandomAccessFile(File, String)
.IOException
- Thrown by the given function.- Since:
- 2.18.0
-
apply
Applies the given function for aRandomAccessFile
specified at the givenPath
.This method allocates and releases the
RandomAccessFile
given to the function.- Type Parameters:
T
- the return type of the function.- Parameters:
file
- the file specifying theRandomAccessFile
to open.function
- the function to apply.- Returns:
- the function's result value.
- Throws:
FileNotFoundException
- SeeIORandomAccessFile(File, String)
.IOException
- Thrown by the given function.- Since:
- 2.18.0
-
create
Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.Prefer
create(Path)
over this.- Parameters:
file
- the file object- Returns:
- a random access file
- Throws:
FileNotFoundException
- SeeIORandomAccessFile(File, String)
.
-
create
Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.- Parameters:
file
- the file object- Returns:
- a random access file
- Throws:
FileNotFoundException
- SeeIORandomAccessFile(File, String)
.
-
create
Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.Prefer
create(Path)
over this.- Parameters:
name
- the file object- Returns:
- a random access file
- Throws:
FileNotFoundException
- SeeIORandomAccessFile(File, String)
.
-
getMode
Gets the access mode, one of "r", "rw", "rwd", or "rws".- Returns:
- one of "r", "rw", "rwd", or "rws".
- Since:
- 2.18.0
-
implies
Tests whether this mode implies the givenother
mode.For example:
READ_WRITE_SYNC_ALL
implies {READ_WRITE_SYNC_CONTENT
}.READ_WRITE_SYNC_CONTENT
implies {READ_WRITE
}.READ_WRITE
implies {READ_ONLY
}.
- Parameters:
other
- the non-null mode to test against.- Returns:
- whether this mode implies the given
other
mode. - Since:
- 2.18.0
-
io
Constructs a random access file to read from, and optionally to write to, the file specified by theFile
argument.- Parameters:
name
- the file object- Returns:
- a random access file
- Throws:
FileNotFoundException
- SeeIORandomAccessFile(File, String)
.- Since:
- 2.18.0
-