Uses of Class
org.xml.sax.InputSource
| Package | Description | 
|---|---|
| java.beans | Contains classes related to developing beans -- components based on
 the JavaBeans™ architecture. | 
| javax.xml.catalog | Provides the classes for implementing
 
     XML Catalogs OASIS Standard V1.1, 7 October 2005. | 
| javax.xml.parsers | 
 Provides the classes for processing XML documents with a SAX (Simple API for XML)
 parser or a DOM (Document Object Model) Document builder. | 
| javax.xml.transform.sax | Provides SAX specific transformation classes. | 
| javax.xml.xpath | Provides an object-model neutral API for the
 evaluation of XPath expressions and access to the evaluation
 environment. | 
| org.xml.sax | Provides the interfaces for the Simple API for XML (SAX). | 
| org.xml.sax.ext | Provides interfaces to SAX2 facilities that
 conformant SAX drivers won't necessarily support. | 
| org.xml.sax.helpers | Provides helper classes, including
 support for bootstrapping SAX-based applications. | 
- 
Uses of InputSource in java.beansConstructors in java.beans with parameters of type InputSource Constructor Description XMLDecoder(InputSource is)Creates a new decoder to parse XML archives created by theXMLEncoderclass.
- 
Uses of InputSource in javax.xml.catalogMethods in javax.xml.catalog that return InputSource Modifier and Type Method Description InputSourceCatalogResolver. resolveEntity(String publicId, String systemId)ImplementsEntityResolver.
- 
Uses of InputSource in javax.xml.parsersMethods in javax.xml.parsers with parameters of type InputSource Modifier and Type Method Description abstract DocumentDocumentBuilder. parse(InputSource is)Parse the content of the given input source as an XML document and return a new DOMDocumentobject.voidSAXParser. parse(InputSource is, HandlerBase hb)Parse the content givenInputSourceas XML using the specifiedHandlerBase.voidSAXParser. parse(InputSource is, DefaultHandler dh)Parse the content givenInputSourceas XML using the specifiedDefaultHandler.
- 
Uses of InputSource in javax.xml.transform.saxMethods in javax.xml.transform.sax that return InputSource Modifier and Type Method Description InputSourceSAXSource. getInputSource()Get the SAX InputSource to be used for the Source.static InputSourceSAXSource. sourceToInputSource(Source source)Attempt to obtain a SAX InputSource object from a Source object.Methods in javax.xml.transform.sax with parameters of type InputSource Modifier and Type Method Description voidSAXSource. setInputSource(InputSource inputSource)Set the SAX InputSource to be used for the Source.Constructors in javax.xml.transform.sax with parameters of type InputSource Constructor Description SAXSource(InputSource inputSource)Create aSAXSource, using a SAXInputSource.SAXSource(XMLReader reader, InputSource inputSource)Create aSAXSource, using anXMLReaderand a SAX InputSource.
- 
Uses of InputSource in javax.xml.xpathMethods in javax.xml.xpath with parameters of type InputSource Modifier and Type Method Description StringXPath. evaluate(String expression, InputSource source)Evaluate an XPath expression in the context of the specifiedInputSourceand return the result as aString.ObjectXPath. evaluate(String expression, InputSource source, QName returnType)Evaluate an XPath expression in the context of the specifiedInputSourceand return the result as the specified type.StringXPathExpression. evaluate(InputSource source)Evaluate the compiled XPath expression in the context of the specifiedInputSourceand return the result as aString.ObjectXPathExpression. evaluate(InputSource source, QName returnType)Evaluate the compiled XPath expression in the context of the specifiedInputSourceand return the result as the specified type.default XPathEvaluationResult<?>XPath. evaluateExpression(String expression, InputSource source)Evaluate an XPath expression in the specified context.default <T> TXPath. evaluateExpression(String expression, InputSource source, Class<T> type)Evaluate an XPath expression in the context of the specifiedsourceand return the result as specified.default XPathEvaluationResult<?>XPathExpression. evaluateExpression(InputSource source)Evaluate the compiled XPath expression in the specified context.default <T> TXPathExpression. evaluateExpression(InputSource source, Class<T> type)Evaluate the compiled XPath expression in the specified context, and return the result with the type specified through theclass type
- 
Uses of InputSource in org.xml.saxMethods in org.xml.sax that return InputSource Modifier and Type Method Description InputSourceEntityResolver. resolveEntity(String publicId, String systemId)Allow the application to resolve external entities.InputSourceHandlerBase. resolveEntity(String publicId, String systemId)Deprecated.Resolve an external entity.Methods in org.xml.sax with parameters of type InputSource Modifier and Type Method Description voidParser. parse(InputSource source)Deprecated.Parse an XML document.voidXMLReader. parse(InputSource input)Parse an XML document.
- 
Uses of InputSource in org.xml.sax.extMethods in org.xml.sax.ext that return InputSource Modifier and Type Method Description InputSourceDefaultHandler2. getExternalSubset(String name, String baseURI)Tells the parser that if no external subset has been declared in the document text, none should be used.InputSourceEntityResolver2. getExternalSubset(String name, String baseURI)Allows applications to provide an external subset for documents that don't explicitly define one.InputSourceDefaultHandler2. resolveEntity(String publicId, String systemId)InvokesEntityResolver2.resolveEntity()with null entity name and base URI.InputSourceDefaultHandler2. resolveEntity(String name, String publicId, String baseURI, String systemId)Tells the parser to resolve the systemId against the baseURI and read the entity text from that resulting absolute URI.InputSourceEntityResolver2. resolveEntity(String name, String publicId, String baseURI, String systemId)Allows applications to map references to external entities into input sources, or tell the parser it should use conventional URI resolution.
- 
Uses of InputSource in org.xml.sax.helpersMethods in org.xml.sax.helpers that return InputSource Modifier and Type Method Description InputSourceDefaultHandler. resolveEntity(String publicId, String systemId)Resolve an external entity.InputSourceXMLFilterImpl. resolveEntity(String publicId, String systemId)Filter an external entity resolution.Methods in org.xml.sax.helpers with parameters of type InputSource Modifier and Type Method Description voidParserAdapter. parse(InputSource input)Parse an XML document.voidXMLFilterImpl. parse(InputSource input)Parse a document.voidXMLReaderAdapter. parse(InputSource input)Parse the document.