android.util
Enum Xml.Encoding

java.lang.Object
  extended by java.lang.Enum<Xml.Encoding>
      extended by android.util.Xml.Encoding
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Xml.Encoding>
Enclosing class:
Xml

public static enum Xml.Encoding
extends java.lang.Enum<Xml.Encoding>


Enum Constant Summary
ISO_8859_1
           
US_ASCII
           
UTF_16
           
UTF_8
           
 
Method Summary
static Xml.Encoding valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Xml.Encoding[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ISO_8859_1

public static final Xml.Encoding ISO_8859_1

US_ASCII

public static final Xml.Encoding US_ASCII

UTF_16

public static final Xml.Encoding UTF_16

UTF_8

public static final Xml.Encoding UTF_8
Method Detail

values

public static final Xml.Encoding[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Xml.Encoding c : Xml.Encoding.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Xml.Encoding valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2008-2010. All Rights Reserved.