-
-
Methods in io.xlate.edi.stream with parameters of type Schema
| Modifier and Type |
Method |
Description |
abstract EDIStreamReader |
EDIInputFactory.createEDIStreamReader(java.io.InputStream stream,
Schema schema) |
Creates a new EDIStreamReader using the given InputStream
(with default encoding) which uses the Schema for validation of
the input's control structures (interchange, group, transaction).
|
abstract EDIStreamReader |
EDIInputFactory.createEDIStreamReader(java.io.InputStream stream,
java.lang.String encoding,
Schema schema) |
Creates a new EDIStreamReader using the given InputStream
and encoding which uses the Schema for validation of the input's
control structures (interchange, group, transaction).
|
void |
EDIStreamReader.setControlSchema(Schema schema) |
Sets the schema to be used for validation of the control structure for
this stream reader.
|
void |
EDIStreamWriter.setControlSchema(Schema controlSchema) |
Sets the schema to be used for validation of the control structure for
this stream writer.
|
void |
EDIStreamReader.setTransactionSchema(Schema schema) |
Sets the schema to be used for validation of the business transaction for
this stream reader.
|
void |
EDIStreamWriter.setTransactionSchema(Schema transactionSchema) |
Sets the schema to be used for validation of the business transaction for
this stream writer.
|