Java javax.xml.validation SchemaFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.validation SchemaFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.validation SchemaFactory.

The text is from its open source code.

Subclass

javax.xml.validation.SchemaFactory has subclasses.
Click this link to see all its subclasses.

Method

LSResourceResolvergetResourceResolver()
Gets the current LSResourceResolver set to this SchemaFactory .
SchemaFactorynewInstance(String schemaLanguage)
Lookup an implementation of the SchemaFactory that supports the specified schema language and return it.
SchemaFactorynewInstance(String schemaLanguage, String factoryClassName, ClassLoader classLoader)
Obtain a new instance of a SchemaFactory from class name.
SchemanewSchema(Source schema)
Parses the specified source as a schema and returns it as a schema.
SchemanewSchema(File schema)
Parses the specified File as a schema and returns it as a Schema .
SchemanewSchema(URL schema)
Parses the specified URL as a schema and returns it as a Schema .
SchemanewSchema(Source[] schemas)
Parses the specified source(s) as a schema and returns it as a schema.
SchemanewSchema()
Creates a special Schema object.
voidsetErrorHandler(ErrorHandler errorHandler)
Sets the ErrorHandler to receive errors encountered during the newSchema method invocation.
voidsetFeature(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.
voidsetProperty(String name, Object object)
Set the value of a property.
voidsetResourceResolver(LSResourceResolver resourceResolver)
Sets the LSResourceResolver to customize resource resolution when parsing schemas.