Package org.apache.maven.internal.xml
Class Xpp3DomBuilder
java.lang.Object
org.apache.maven.internal.xml.Xpp3DomBuilder
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic interfaceInput location builder interface, to be implemented to choose how to store data.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic Xpp3Dombuild(InputStream is, String encoding) static Xpp3Dombuild(InputStream is, String encoding, boolean trim) static Xpp3Domstatic Xpp3Domstatic Xpp3Dombuild(Reader reader, boolean trim, Xpp3DomBuilder.InputLocationBuilder locationBuilder) static Xpp3Dombuild(Reader reader, Xpp3DomBuilder.InputLocationBuilder locationBuilder) static Xpp3Dombuild(XmlPullParser parser) static Xpp3Dombuild(XmlPullParser parser, boolean trim) static Xpp3Dombuild(XmlPullParser parser, boolean trim, Xpp3DomBuilder.InputLocationBuilder locationBuilder) 
- 
Constructor Details- 
Xpp3DomBuilderpublic Xpp3DomBuilder()
 
- 
- 
Method Details- 
build- Throws:
- XmlPullParserException
- IOException
 
- 
buildpublic static Xpp3Dom build(Reader reader, Xpp3DomBuilder.InputLocationBuilder locationBuilder) throws XmlPullParserException, IOException - Parameters:
- reader- the reader
- locationBuilder- the builder
- Returns:
- DOM
- Throws:
- XmlPullParserException- xml exception
- IOException- io
- Since:
- 3.2.0
 
- 
buildpublic static Xpp3Dom build(InputStream is, String encoding) throws XmlPullParserException, IOException - Throws:
- XmlPullParserException
- IOException
 
- 
buildpublic static Xpp3Dom build(InputStream is, String encoding, boolean trim) throws XmlPullParserException, IOException - Throws:
- XmlPullParserException
- IOException
 
- 
build- Throws:
- XmlPullParserException
- IOException
 
- 
buildpublic static Xpp3Dom build(Reader reader, boolean trim, Xpp3DomBuilder.InputLocationBuilder locationBuilder) throws XmlPullParserException, IOException - Parameters:
- reader- the reader
- trim- to trim
- locationBuilder- the builder
- Returns:
- DOM
- Throws:
- XmlPullParserException- xml exception
- IOException- io
- Since:
- 3.2.0
 
- 
build- Throws:
- XmlPullParserException
- IOException
 
- 
buildpublic static Xpp3Dom build(XmlPullParser parser, boolean trim) throws XmlPullParserException, IOException - Throws:
- XmlPullParserException
- IOException
 
- 
buildpublic static Xpp3Dom build(XmlPullParser parser, boolean trim, Xpp3DomBuilder.InputLocationBuilder locationBuilder) throws XmlPullParserException, IOException - Parameters:
- locationBuilder- builder
- parser- the parser
- trim- do trim
- Returns:
- DOM
- Throws:
- XmlPullParserException- xml exception
- IOException- io
- Since:
- 3.2.0
 
 
-