public enum Charset extends Enum<Charset>
| Enum Constant and Description |
|---|
ASCII
ASCII.
|
ISO_8859_1
ISO-8859-1.
|
UNICODEBIGUNMARKED
UnicodeBigUnmarked.
|
UTF_8
UTF-8.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final Charset UTF_8
public static final Charset ASCII
public static final Charset ISO_8859_1
public static final Charset UNICODEBIGUNMARKED
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 nameNullPointerException - if the argument is nullpublic String getName()
Connector Packaging generic 4.3.0 API
Copyright © {inceptionYear}-2023 eHealth. All Rights Reserved.