
com.harium.suneidesis.serialization.KnowledgeBaseDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
The newest version!
package com.harium.suneidesis.serialization;
import com.harium.suneidesis.repository.KnowledgeBase;
import java.io.IOException;
import java.io.InputStream;
public interface KnowledgeBaseDeserializer {
void deserialize(String json, KnowledgeBase base) throws IOException;
void deserialize(InputStream json, KnowledgeBase base) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy