com.opencloud.slee.resources.mm7
Enum MMStatusExtension

java.lang.Object
  extended by java.lang.Enum<MMStatusExtension>
      extended by com.opencloud.slee.resources.mm7.MMStatusExtension
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MMStatusExtension>

public enum MMStatusExtension
extends java.lang.Enum<MMStatusExtension>

Enum for MM Status Extension values.

Since:
MM7 v.6.3.0

Enum Constant Summary
REJECTION_BY_MMS_RECIPIENT
           
REJECTION_BY_OTHER_RS
           
 
Method Summary
static MMStatusExtension fromString(java.lang.String mmStatusExtension)
          Get a MMStatusExtension for a given string.
 java.lang.String toString()
           
static MMStatusExtension valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MMStatusExtension[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REJECTION_BY_MMS_RECIPIENT

public static final MMStatusExtension REJECTION_BY_MMS_RECIPIENT

REJECTION_BY_OTHER_RS

public static final MMStatusExtension REJECTION_BY_OTHER_RS
Method Detail

values

public static MMStatusExtension[] 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 (MMStatusExtension c : MMStatusExtension.values())
    System.out.println(c);

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

valueOf

public static MMStatusExtension 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

fromString

public static MMStatusExtension fromString(java.lang.String mmStatusExtension)
Get a MMStatusExtension for a given string.

Parameters:
mmStatusExtension - the status string to parse
Returns:
the enum object
Throws:
java.lang.IllegalArgumentException - if the status string is not recognized
Since:
MM7 v.6.3.0

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<MMStatusExtension>