public enum CharacterEncoding extends Enum<CharacterEncoding>
| Enum Constant and Description |
|---|
ASCII
ASCII character encoding.
|
IBM1047
IBM1047 (EBCDIC Latin-1) character encoding.
|
ISO8859_1
ISO-8859-1 (Latin-1 extension to ASCII) character encoding.
|
PLATFORM
Encoding as set on Mule platform
|
UTF8
UTF-8 Unicode character encoding.
|
| Modifier and Type | Field and Description |
|---|---|
Charset |
characterSet |
| Modifier and Type | Method and Description |
|---|---|
static CharacterEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CharacterEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterEncoding PLATFORM
public static final CharacterEncoding ASCII
public static final CharacterEncoding ISO8859_1
public static final CharacterEncoding IBM1047
public static final CharacterEncoding UTF8
public final Charset characterSet
public static CharacterEncoding[] values()
for (CharacterEncoding c : CharacterEncoding.values()) System.out.println(c);
public static CharacterEncoding 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 nullCopyright © 2020 MuleSoft, Inc.. All rights reserved.