bad.robot.http
Enum CharacterSet

java.lang.Object
  extended by java.lang.Enum<CharacterSet>
      extended by bad.robot.http.CharacterSet
All Implemented Interfaces:
Serializable, Comparable<CharacterSet>

public enum CharacterSet
extends Enum<CharacterSet>


Enum Constant Summary
ASCII
           
defaultCharacterSet
           
ISO_8859_1
           
US_ASCII
           
UTF_16
           
UTF_8
           
 
Method Summary
 String asString()
           
static CharacterSet valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CharacterSet[] 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

UTF_8

public static final CharacterSet UTF_8

UTF_16

public static final CharacterSet UTF_16

US_ASCII

public static final CharacterSet US_ASCII

ASCII

public static final CharacterSet ASCII

ISO_8859_1

public static final CharacterSet ISO_8859_1

defaultCharacterSet

public static final CharacterSet defaultCharacterSet
Method Detail

values

public static CharacterSet[] 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 (CharacterSet c : CharacterSet.values())
    System.out.println(c);

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

valueOf

public static CharacterSet 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

asString

public String asString()


Copyright © 2012. All Rights Reserved.