|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Charset>
be.ehealth.technicalconnector.enumeration.Charset
public enum Charset
Enumeration for charsets.
Enum Constant Summary | |
---|---|
ASCII
ASCII. |
|
ISO_8859_1
ISO-8859-1. |
|
UNICODEBIGUNMARKED
UnicodeBigUnmarked. |
|
UTF_8
UTF-8. |
Method Summary | |
---|---|
String |
getName()
It gets the name of the charset. |
static Charset |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Charset[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Charset UTF_8
public static final Charset ASCII
public static final Charset ISO_8859_1
public static final Charset UNICODEBIGUNMARKED
Method Detail |
---|
public static Charset[] values()
for (Charset c : Charset.values()) System.out.println(c);
public static Charset valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getName()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |