All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.xlate.edi.internal.schema.SchemaReader Maven / Gradle / Ivy

There is a newer version: 1.25.2
Show newest version
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