Package com.io7m.waxmill.parser.api
Interface WXMClientConfigurationParserProviderType
- All Superinterfaces:
WXMParserProviderType<WXMClientConfiguration>
- All Known Implementing Classes:
WXMClientConfigurationParsers
public interface WXMClientConfigurationParserProviderType extends WXMParserProviderType<WXMClientConfiguration>
A provider of client configuration parsers.
-
Method Summary
Modifier and Type Method Description WXMClientConfigurationParserTypecreate(java.nio.file.FileSystem fileSystem, java.net.URI uri, java.io.InputStream stream, java.util.function.Consumer<WXMParseError> errors)Create a new parser.
-
Method Details
-
create
WXMClientConfigurationParserType create(java.nio.file.FileSystem fileSystem, java.net.URI uri, java.io.InputStream stream, java.util.function.Consumer<WXMParseError> errors) throws java.io.IOExceptionDescription copied from interface:WXMParserProviderTypeCreate a new parser.- Specified by:
createin interfaceWXMParserProviderType<WXMClientConfiguration>- Parameters:
fileSystem- The filesystem used to create new paths, if necessaryuri- The source URIstream- The source streamerrors- A receiver of parse errors- Returns:
- A new parser
- Throws:
java.io.IOException- On I/O errors
-