Package com.io7m.waxmill.parser.api
Interface WXMBootConfigurationParserProviderType
- All Superinterfaces:
WXMParserProviderType<java.util.List<WXMBootConfigurationType>>
- All Known Implementing Classes:
WXMBootConfigurationParsers
public interface WXMBootConfigurationParserProviderType extends WXMParserProviderType<java.util.List<WXMBootConfigurationType>>
A provider of boot configuration parsers.
-
Method Summary
Modifier and Type Method Description WXMBootConfigurationParserTypecreate(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
WXMBootConfigurationParserType 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<java.util.List<WXMBootConfigurationType>>- 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
-