Uses of Class
com.google.common.io.FileWriteMode
-
Packages that use FileWriteMode Package Description com.google.common.io This package contains utility methods and classes for working with Java I/O; for example input streams, output streams, readers, writers, and files. -
-
Uses of FileWriteMode in com.google.common.io
Methods in com.google.common.io that return FileWriteMode Modifier and Type Method Description static FileWriteMode
FileWriteMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileWriteMode[]
FileWriteMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.common.io with parameters of type FileWriteMode Modifier and Type Method Description static ByteSink
Files. asByteSink(java.io.File file, FileWriteMode... modes)
Returns a newByteSink
for writing bytes to the given file.static CharSink
Files. asCharSink(java.io.File file, java.nio.charset.Charset charset, FileWriteMode... modes)
Returns a newCharSink
for writing character data to the given file using the given character set.
-