Interface PlatformUnmarshaller
-
- All Known Implementing Classes:
DOMUnmarshaller,SAXUnmarshaller
public interface PlatformUnmarshaller
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.xml.sax.EntityResolvergetEntityResolver()org.xml.sax.ErrorHandlergetErrorHandler()javax.xml.validation.SchemagetSchema()intgetValidationMode()booleanisResultAlwaysXMLRoot()booleanisSecureProcessingDisabled()voidmediaTypeChanged()voidsetDisableSecureProcessing(boolean disableSecureProcessing)voidsetEntityResolver(org.xml.sax.EntityResolver entityResolver)voidsetErrorHandler(org.xml.sax.ErrorHandler errorHandler)voidsetResultAlwaysXMLRoot(boolean alwaysReturnRoot)voidsetSchema(javax.xml.validation.Schema schema)voidsetSchemas(java.lang.Object[] schemas)voidsetValidationMode(int validationMode)voidsetWhitespacePreserving(boolean isWhitespacePreserving)java.lang.Objectunmarshal(java.io.File file)java.lang.Objectunmarshal(java.io.File file, java.lang.Class clazz)java.lang.Objectunmarshal(java.io.InputStream inputStream)java.lang.Objectunmarshal(java.io.InputStream inputStream, java.lang.Class clazz)java.lang.Objectunmarshal(java.io.Reader reader)java.lang.Objectunmarshal(java.io.Reader reader, java.lang.Class clazz)java.lang.Objectunmarshal(java.net.URL url)java.lang.Objectunmarshal(java.net.URL url, java.lang.Class clazz)java.lang.Objectunmarshal(javax.xml.transform.Source source)java.lang.Objectunmarshal(javax.xml.transform.Source source, java.lang.Class clazz)java.lang.Objectunmarshal(org.w3c.dom.Node node)java.lang.Objectunmarshal(org.w3c.dom.Node node, java.lang.Class clazz)java.lang.Objectunmarshal(org.xml.sax.InputSource inputSource)java.lang.Objectunmarshal(org.xml.sax.InputSource inputSource, java.lang.Class clazz)java.lang.Objectunmarshal(org.xml.sax.XMLReader xmlReader, org.xml.sax.InputSource inputSource)java.lang.Objectunmarshal(org.xml.sax.XMLReader xmlReader, org.xml.sax.InputSource inputSource, java.lang.Class clazz)
-
-
-
Method Detail
-
getEntityResolver
org.xml.sax.EntityResolver getEntityResolver()
-
setEntityResolver
void setEntityResolver(org.xml.sax.EntityResolver entityResolver)
-
getErrorHandler
org.xml.sax.ErrorHandler getErrorHandler()
-
setErrorHandler
void setErrorHandler(org.xml.sax.ErrorHandler errorHandler)
-
getValidationMode
int getValidationMode()
-
setValidationMode
void setValidationMode(int validationMode)
-
setWhitespacePreserving
void setWhitespacePreserving(boolean isWhitespacePreserving)
-
setSchemas
void setSchemas(java.lang.Object[] schemas)
-
setSchema
void setSchema(javax.xml.validation.Schema schema)
-
getSchema
javax.xml.validation.Schema getSchema()
-
unmarshal
java.lang.Object unmarshal(java.io.File file)
-
unmarshal
java.lang.Object unmarshal(java.io.File file, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(java.io.InputStream inputStream)
-
unmarshal
java.lang.Object unmarshal(java.io.InputStream inputStream, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(org.xml.sax.InputSource inputSource)
-
unmarshal
java.lang.Object unmarshal(org.xml.sax.InputSource inputSource, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(org.w3c.dom.Node node)
-
unmarshal
java.lang.Object unmarshal(org.w3c.dom.Node node, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(java.io.Reader reader)
-
unmarshal
java.lang.Object unmarshal(java.io.Reader reader, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(javax.xml.transform.Source source)
-
unmarshal
java.lang.Object unmarshal(javax.xml.transform.Source source, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(java.net.URL url)
-
unmarshal
java.lang.Object unmarshal(java.net.URL url, java.lang.Class clazz)
-
unmarshal
java.lang.Object unmarshal(org.xml.sax.XMLReader xmlReader, org.xml.sax.InputSource inputSource)
-
unmarshal
java.lang.Object unmarshal(org.xml.sax.XMLReader xmlReader, org.xml.sax.InputSource inputSource, java.lang.Class clazz)
-
setResultAlwaysXMLRoot
void setResultAlwaysXMLRoot(boolean alwaysReturnRoot)
-
isResultAlwaysXMLRoot
boolean isResultAlwaysXMLRoot()
-
mediaTypeChanged
void mediaTypeChanged()
-
isSecureProcessingDisabled
boolean isSecureProcessingDisabled()
-
setDisableSecureProcessing
void setDisableSecureProcessing(boolean disableSecureProcessing)
-
-