All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.util.Xml Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag that was used to checkout the source from the Git repos was android-2.1_r2.

There is a newer version: 4.1.1.4
Show newest version
package android.util;
public class Xml
{
public static enum Encoding
{
ISO_8859_1(),
US_ASCII(),
UTF_16(),
UTF_8();
}
public  Xml() { throw new RuntimeException("Stub!"); }
public static  void parse(java.lang.String xml, org.xml.sax.ContentHandler contentHandler) throws org.xml.sax.SAXException { throw new RuntimeException("Stub!"); }
public static  void parse(java.io.Reader in, org.xml.sax.ContentHandler contentHandler) throws java.io.IOException, org.xml.sax.SAXException { throw new RuntimeException("Stub!"); }
public static  void parse(java.io.InputStream in, android.util.Xml.Encoding encoding, org.xml.sax.ContentHandler contentHandler) throws java.io.IOException, org.xml.sax.SAXException { throw new RuntimeException("Stub!"); }
public static  org.xmlpull.v1.XmlPullParser newPullParser() { throw new RuntimeException("Stub!"); }
public static  org.xmlpull.v1.XmlSerializer newSerializer() { throw new RuntimeException("Stub!"); }
public static  android.util.Xml.Encoding findEncodingByName(java.lang.String encodingName) throws java.io.UnsupportedEncodingException { throw new RuntimeException("Stub!"); }
public static  android.util.AttributeSet asAttributeSet(org.xmlpull.v1.XmlPullParser parser) { throw new RuntimeException("Stub!"); }
public static java.lang.String FEATURE_RELAXED;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy