bad.robot.http
Enum CharacterSet
java.lang.Object
java.lang.Enum<CharacterSet>
bad.robot.http.CharacterSet
- All Implemented Interfaces:
- Serializable, Comparable<CharacterSet>
public enum CharacterSet
- extends Enum<CharacterSet>
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
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.