public enum CharacterSet extends Enum<CharacterSet>
| Enum Constant and Description |
|---|
ASCII
ASCII as defined in https://en.wikipedia.org/wiki/ASCII as defined in codes 0-127.
|
CID1SET
Deprecated.
in SmartDeviceLink 7.0.0
|
CID2SET
Deprecated.
in SmartDeviceLink 7.0.0
|
ISO_8859_1
Latin-1, as defined in https://en.wikipedia.org/wiki/ISO/IEC_8859-1
|
TYPE2SET
Deprecated.
in SmartDeviceLink 7.0.0
|
TYPE5SET
Deprecated.
in SmartDeviceLink 7.0.0
|
UTF_8
The UTF-8 character set that uses variable bytes per code point.
|
| Modifier and Type | Method and Description |
|---|---|
static CharacterSet |
valueForString(String value)
Convert String to CharacterSet
|
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.
|
@Deprecated public static final CharacterSet TYPE2SET
@Deprecated public static final CharacterSet TYPE5SET
@Deprecated public static final CharacterSet CID1SET
@Deprecated public static final CharacterSet CID2SET
public static final CharacterSet ASCII
public static final CharacterSet ISO_8859_1
public static final CharacterSet UTF_8
public static CharacterSet[] values()
for (CharacterSet c : CharacterSet.values()) System.out.println(c);
public static CharacterSet 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 static CharacterSet valueForString(String value)
value - String