SMSLib 3.5.3

org.smslib
Enum Message.MessageEncodings

java.lang.Object
  extended by java.lang.Enum<Message.MessageEncodings>
      extended by org.smslib.Message.MessageEncodings
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Message.MessageEncodings>
Enclosing class:
Message

public static enum Message.MessageEncodings
extends java.lang.Enum<Message.MessageEncodings>

Enumeration representing available message encodings.


Enum Constant Summary
ENC7BIT
          7 bit encoding - standard GSM alphabet.
ENC8BIT
          8 bit encoding.
ENCCUSTOM
          Custom encoding.
ENCUCS2
          UCS2 (Unicode) encoding.
 
Method Summary
static Message.MessageEncodings valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Message.MessageEncodings[] 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

ENC7BIT

public static final Message.MessageEncodings ENC7BIT
7 bit encoding - standard GSM alphabet.


ENC8BIT

public static final Message.MessageEncodings ENC8BIT
8 bit encoding.


ENCUCS2

public static final Message.MessageEncodings ENCUCS2
UCS2 (Unicode) encoding.


ENCCUSTOM

public static final Message.MessageEncodings ENCCUSTOM
Custom encoding. Currently just defaults to 7-bit.

Method Detail

values

public static Message.MessageEncodings[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Message.MessageEncodings c : Message.MessageEncodings.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Message.MessageEncodings valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

SMSLib 3.5.3

(c) 2002-2011, http://smslib.org