![JAR search and dependency download from the Maven repository](/logo.png)
io.xlate.edi.internal.schema.SchemaReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of staedi Show documentation
Show all versions of staedi Show documentation
Streaming API for EDI for Java
package io.xlate.edi.internal.schema;
import java.util.Map;
import io.xlate.edi.schema.EDISchemaException;
import io.xlate.edi.schema.EDIType;
interface SchemaReader {
default Map readTypes() throws EDISchemaException {
return readTypes(true);
}
Map readTypes(boolean setReferences) throws EDISchemaException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy