com.github.bloodshura.ignitium.cfg.json.Json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-cfg Show documentation
Show all versions of ignitium-cfg Show documentation
A collection of configuration and serialization readers and writers, like JSON, internationalization (I18n), and CSV.
package com.github.bloodshura.ignitium.cfg.json;
import com.github.bloodshura.ignitium.lang.SelfFactory;
import com.github.bloodshura.ignitium.resource.Resource;
import javax.annotation.Nonnull;
import java.io.IOException;
public interface Json extends SelfFactory {
@Override
void load(@Nonnull Resource resource) throws IOException, JsonParseException;
@Nonnull
@Override
String toString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy