All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.akurilov.commons.io.file.FileOutput Maven / Gradle / Ivy

There is a newer version: 2.3.6
Show newest version
package com.github.akurilov.commons.io.file;

import com.github.akurilov.commons.io.Output;

import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;

/**
 * A Java objects file output
 */
public interface FileOutput
extends Output {

	OpenOption[] OUTPUT_OPEN_OPTIONS = new OpenOption[] {
		StandardOpenOption.APPEND,
		StandardOpenOption.CREATE,
		StandardOpenOption.WRITE
	};

	Path getFilePath();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy