Java org.springframework.integration.file.support FileExistsMode fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.integration.file.support FileExistsMode fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.integration.file.support FileExistsMode.

The text is from its open source code.

Field

FileExistsModeAPPEND
Append data to any pre-existing files; close after each append.
FileExistsModeAPPEND_NO_FLUSH
Append data to any pre-existing files; do not flush/close after appending.
FileExistsModeFAIL
Raise an exception in case the file to be written already exists.
FileExistsModeIGNORE
If the file already exists, do nothing.
FileExistsModeREPLACE
If the file already exists, replace it.
FileExistsModeREPLACE_IF_MODIFIED
If the file already exists, replace it only if the last modified time is different.