Uses of Interface
io.xlate.edi.schema.Schema
Packages that use Schema
-
Uses of Schema in io.xlate.edi.schema
Methods in io.xlate.edi.schema that return SchemaModifier and TypeMethodDescriptionSchemaFactory.createSchema(InputStream stream) SchemaFactory.createSchema(URL location) SchemaFactory.getControlSchema(String standard, String[] version) Retrieve the control schema for the provided standard and version. -
Uses of Schema in io.xlate.edi.stream
Methods in io.xlate.edi.stream that return SchemaModifier and TypeMethodDescriptionEDIStreamReader.getControlSchema()Returns the control schema currently set on the reader.EDIStreamWriter.getControlSchema()Returns the control schema currently set on the reader.EDIStreamReader.getTransactionSchema()Returns the schema currently set on the reader to be used for validation of the business transaction.Methods in io.xlate.edi.stream with parameters of type SchemaModifier and TypeMethodDescriptionabstract EDIStreamReaderEDIInputFactory.createEDIStreamReader(InputStream stream, Schema schema) Creates a newEDIStreamReaderusing the givenInputStream(with default encoding) which uses theSchemafor validation of the input's control structures (interchange, group, transaction).abstract EDIStreamReaderEDIInputFactory.createEDIStreamReader(InputStream stream, String encoding, Schema schema) Creates a newEDIStreamReaderusing the givenInputStreamand encoding which uses theSchemafor validation of the input's control structures (interchange, group, transaction).voidEDIStreamReader.setControlSchema(Schema schema) Sets the schema to be used for validation of the control structure for this stream reader.voidEDIStreamWriter.setControlSchema(Schema controlSchema) Sets the schema to be used for validation of the control structure for this stream writer.voidEDIStreamReader.setTransactionSchema(Schema schema) Sets the schema to be used for validation of the business transaction for this stream reader.voidEDIStreamWriter.setTransactionSchema(Schema transactionSchema) Sets the schema to be used for validation of the business transaction for this stream writer.