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

org.nd4j.linalg.io.Resource Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.io;

/**
 * Created by agibsoncccc on 11/30/15.
 */
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.net.URL;

public interface Resource extends InputStreamSource {
    boolean exists();

    boolean isReadable();

    boolean isOpen();

    URL getURL() throws IOException;

    URI getURI() throws IOException;

    File getFile() throws IOException;

    long contentLength() throws IOException;

    long lastModified() throws IOException;

    Resource createRelative(String var1) throws IOException;

    String getFilename();

    String getDescription();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy