sdmxdl.util.file.SdmxFileClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-provider-util Show documentation
Show all versions of sdmx-dl-provider-util Show documentation
Download SDMX data - Provider Util
package sdmxdl.util.file;
import org.checkerframework.checker.nullness.qual.NonNull;
import sdmxdl.DataCursor;
import sdmxdl.DataFilter;
import sdmxdl.DataflowRef;
import sdmxdl.Key;
import sdmxdl.util.file.SdmxFileInfo;
import java.io.IOException;
public interface SdmxFileClient {
@NonNull SdmxFileInfo decode() throws IOException;
@NonNull DataCursor loadData(@NonNull SdmxFileInfo info, @NonNull DataflowRef flowRef, @NonNull Key key, @NonNull DataFilter filter) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy