Example usage for Java javax.xml.validation SchemaFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
LSResourceResolver | getResourceResolver() Gets the current LSResourceResolver set to this SchemaFactory . |
SchemaFactory | newInstance(String schemaLanguage) Lookup an implementation of the SchemaFactory that supports the specified schema language and return it. |
SchemaFactory | newInstance(String schemaLanguage, String factoryClassName, ClassLoader classLoader) Obtain a new instance of a SchemaFactory from class name. |
Schema | newSchema(Source schema) Parses the specified source as a schema and returns it as a schema. |
Schema | newSchema(File schema) Parses the specified File as a schema and returns it as a Schema . |
Schema | newSchema(URL schema) Parses the specified URL as a schema and returns it as a Schema . |
Schema | newSchema(Source[] schemas) Parses the specified source(s) as a schema and returns it as a schema. |
Schema | newSchema() Creates a special Schema object. |
void | setErrorHandler(ErrorHandler errorHandler) Sets the ErrorHandler to receive errors encountered during the newSchema method invocation. |
void | setFeature(String name, boolean value) Set a feature for this SchemaFactory , Schema s created by this factory, and by extension, Validator s and ValidatorHandler s created by those Schema s. |
void | setProperty(String name, Object object) Set the value of a property. |
void | setResourceResolver(LSResourceResolver resourceResolver) Sets the LSResourceResolver to customize resource resolution when parsing schemas. |