public enum Gsm7EncodingStyle extends Enum<Gsm7EncodingStyle>
| Enum Constant and Description |
|---|
bit7_sms_style
7-bit packing - SMS
|
bit7_ussd_style
7-bit packing - USSD
|
bit8_smpp_style
8-bit packing - SMPP
|
| Modifier and Type | Method and Description |
|---|---|
static Gsm7EncodingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Gsm7EncodingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gsm7EncodingStyle bit7_sms_style
public static final Gsm7EncodingStyle bit7_ussd_style
public static final Gsm7EncodingStyle bit8_smpp_style
public static Gsm7EncodingStyle[] values()
for (Gsm7EncodingStyle c : Gsm7EncodingStyle.values()) System.out.println(c);
public static Gsm7EncodingStyle 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 © 2016. All Rights Reserved.