Uses of Interface
io.xlate.edi.schema.Schema
| Package | Description |
|---|---|
| io.xlate.edi.schema | |
| io.xlate.edi.stream |
-
Uses of Schema in io.xlate.edi.schema
Methods in io.xlate.edi.schema that return Schema Modifier and Type Method Description SchemaSchemaFactory. createSchema(InputStream stream)SchemaSchemaFactory. createSchema(URL location)SchemaSchemaFactory. 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 Schema Modifier and Type Method Description SchemaEDIStreamReader. getControlSchema()Returns the control schema currently set on the reader.SchemaEDIStreamWriter. getControlSchema()Returns the control schema currently set on the reader.SchemaEDIStreamReader. 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 Schema Modifier and Type Method Description abstract 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.