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

com.github.datalking.io.Resource Maven / Gradle / Ivy

package com.github.datalking.io;

import java.io.IOException;
import java.io.InputStream;

/**
 * Resource代表统一资源 接口
 */
public interface Resource {

    boolean exists();

    InputStream getInputStream() throws IOException;

    String getFilename();

    String getDescription();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy