![JAR search and dependency download from the Maven repository](/logo.png)
internal.sdmxdl.NoOpPersistence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-api Show documentation
Show all versions of sdmx-dl-api Show documentation
Easily download official statistics - API
The newest version!
package internal.sdmxdl;
import lombok.NonNull;
import sdmxdl.HasPersistence;
import sdmxdl.ext.FileFormat;
import sdmxdl.ext.Persistence;
import java.util.Collections;
import java.util.Set;
public enum NoOpPersistence implements Persistence {
INSTANCE;
@Override
public @NonNull String getPersistenceId() {
return "NO_OP";
}
@Override
public int getPersistenceRank() {
return UNKNOWN_PERSISTENCE_RANK;
}
@Override
public @NonNull Set> getFormatSupportedTypes() {
return Collections.emptySet();
}
@Override
public @NonNull FileFormat getFormat(@NonNull Class type) {
return FileFormat.noOp();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy