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

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

package com.github.akurilov.commons.io.file;

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

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

/**
 * A Java objects file input
 */
public interface FileInput
extends Input {

	OpenOption[] INPUT_OPEN_OPTIONS = new OpenOption[] { StandardOpenOption.READ };

	Path getFilePath();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy