Uses of Class
org.xmlpull.v1.XmlPullParserException
Packages that use XmlPullParserException
-
Uses of XmlPullParserException in Unnamed Package
Methods in Unnamed Package that throw XmlPullParserExceptionModifier and TypeMethodDescriptionvoidBestDeal.checkVendor(XmlPullParser parser) subroutine handling a single vendor(package private) static voidXmlCompare.compareXmlTwoFiles(Reader rr, Reader rq) voidRSSReader.convertChannelToHtml(XmlPullParser parser, XmlSerializer writer) voidRSSReader.convertItemToHtml(XmlPullParser parser, XmlSerializer writer) voidRSSReader.convertRSSToHtml(XmlPullParser parser, XmlSerializer writer) voidXmlPullCount.countXml(XmlPullParser xpp) static StringXmlCompare.getNextElementText(XmlPullParser parser) Returns the next Element in the stream (including all sub elements) as a Stringstatic voidmain() method decodes command-line parameters and invoke the parserstatic voidstatic voidstatic voidstatic voidstatic voidstatic voidThis method will parse the input reader and return a Map.private ListChannelPullHandler.parseFirst(int type) This method will recursively parse the document, returning a List build of Key-Value pairs.private static voidCloneParser.print(XmlPullParser pp) voidMyXmlPullApp.processDocument(XmlPullParser xpp) voidMyXmlPullApp.processText(XmlPullParser xpp) private voidRoundtrip.roundTrip()private static voidprivate static voidRoundtrip.roundTrip(XmlPullParserFactory factory, String loc) private static voidRoundtrip.roundTrip(XmlPullParserFactory factory, String loc, String indent) voidBestDeal.update(XmlPullParser parser) updates the best deal from the given list in the formatprivate voidRoundtrip.writeStartTag()private voidRoundtrip.writeToken(int eventType) Constructors in Unnamed Package that throw XmlPullParserException -
Uses of XmlPullParserException in eventlist
Methods in eventlist that throw XmlPullParserException -
Uses of XmlPullParserException in org.xmlpull.v1
Methods in org.xmlpull.v1 that throw XmlPullParserExceptionModifier and TypeMethodDescriptionvoidXmlPullParser.defineEntityReplacementText(String entityName, String replacementText) Set new value for entity replacement text as defined in XML 1.0 Section 4.5 Construction of Internal Entity Replacement Text.intXmlPullParser.getEventType()Returns the type of the current event (START_TAG, END_TAG, TEXT, etc.)intXmlPullParser.getNamespaceCount(int depth) Returns the numbers of elements in the namespace stack for the given depth.XmlPullParser.getNamespacePrefix(int pos) Returns the namespace prefixe for the given position in the namespace stack.XmlPullParser.getNamespaceUri(int pos) Returns the namespace URI for the given position in the namespace stack If the position is out of range, an exception is thrown.booleanXmlPullParser.isEmptyElementTag()Returns true if the current event is START_TAG and the tag is degenerated (e.g.booleanXmlPullParser.isWhitespace()Checks whether the current TEXT event contains only whitespace characters.static XmlPullParserFactoryXmlPullParserFactory.newInstance()Create a new instance of a PullParserFactory that can be used to create XML pull parsers (see class description for more details).static XmlPullParserFactoryXmlPullParserFactory.newInstance(String classNames, Class context) XmlPullParserFactory.newPullParser()Creates a new instance of a XML Pull Parser using the currently configured factory features.XmlPullParserFactory.newSerializer()Creates a new instance of a XML Serializer.intXmlPullParser.next()Get next parsing event - element content wil be coalesced and only one TEXT event must be returned for whole element content (comments and processing instructions will be ignored and emtity references must be expanded or exception mus be thrown if entity reerence can not be exapnded).intXmlPullParser.nextTag()Call next() and return event if it is START_TAG or END_TAG otherwise throw an exception.XmlPullParser.nextText()If current event is START_TAG then if next element is TEXT then element content is returned or if next event is END_TAG then empty string is returned, otherwise exception is thrown.intXmlPullParser.nextToken()This method works similarly to next() but will expose additional event types (COMMENT, CDSECT, DOCDECL, ENTITY_REF, PROCESSING_INSTRUCTION, or IGNORABLE_WHITESPACE) if they are available in input.voidTest if the current event is of the given type and if the namespace and name do match.voidXmlPullParser.setFeature(String name, boolean state) Use this call to change the general behaviour of the parser, such as namespace processing or doctype declaration handling.voidXmlPullParserFactory.setFeature(String name, boolean state) Set the features to be set when XML Pull Parser is created by this factory.voidXmlPullParser.setInput(InputStream inputStream, String inputEncoding) Sets the input stream the parser is going to process.voidSet the input source for parser to the given reader and resets the parser.voidXmlPullParser.setProperty(String name, Object value) Set the value of a property.