Here you can find the source of nextEndTag(XmlPullParser pp)
public static void nextEndTag(XmlPullParser pp) throws XmlPullParserException, IOException
//package com.java2s; // for license please see accompanying LICENSE.txt file (available also at http://www.xmlpull.org/) import java.io.IOException; import org.xmlpull.v1.XmlPullParser; import org.xmlpull.v1.XmlPullParserException; public class Main { /**/*ww w .j av a 2 s.com*/ * combine nextTag(); pp.require(XmlPullParser.END_TAG, namespace, name); */ public static void nextEndTag(XmlPullParser pp, String namespace, String name) throws XmlPullParserException, IOException { pp.nextTag(); pp.require(XmlPullParser.END_TAG, namespace, name); } /** * Call parser nextTag() and check that it is END_TAG, throw exception if not. */ public static void nextEndTag(XmlPullParser pp) throws XmlPullParserException, IOException { if (pp.nextTag() != XmlPullParser.END_TAG) { throw new XmlPullParserException("expected END_TAG and not" + pp.getPositionDescription()); } } }