android.util
Enum Xml.Encoding

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

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


Enum Constant Summary
ISO_8859_1
           
US_ASCII
           
UTF_16
           
UTF_8
           
 
Method Summary
static Xml.Encoding valueOf(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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
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 Xml.Encoding[] values()
Returns an array containing the constants of this enum type, in the order they are 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 are declared

valueOf

public static Xml.Encoding valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2008-2012. All Rights Reserved.