com.opencloud.slee.resources.mm7
Enum DeliveryReportRequest.MMDeliveryStatus

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

public static enum DeliveryReportRequest.MMDeliveryStatus
extends java.lang.Enum<DeliveryReportRequest.MMDeliveryStatus>

Enum for Delivery Report mmStatus codes


Enum Constant Summary
DEFERRED
           
DELIVERY_CONDITION_NOT_MET
           
EXPIRED
           
FORWARDED
           
INDETERMINATE
           
REJECTED
           
RETRIEVED
           
UNRECOGNISED
           
 
Method Summary
static DeliveryReportRequest.MMDeliveryStatus fromString(java.lang.String status)
          Convert a string representation of a deliver status to a singleton status object.
 java.lang.String toString()
           
static DeliveryReportRequest.MMDeliveryStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DeliveryReportRequest.MMDeliveryStatus[] 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

EXPIRED

public static final DeliveryReportRequest.MMDeliveryStatus EXPIRED

RETRIEVED

public static final DeliveryReportRequest.MMDeliveryStatus RETRIEVED

REJECTED

public static final DeliveryReportRequest.MMDeliveryStatus REJECTED

INDETERMINATE

public static final DeliveryReportRequest.MMDeliveryStatus INDETERMINATE

FORWARDED

public static final DeliveryReportRequest.MMDeliveryStatus FORWARDED

DELIVERY_CONDITION_NOT_MET

public static final DeliveryReportRequest.MMDeliveryStatus DELIVERY_CONDITION_NOT_MET

UNRECOGNISED

public static final DeliveryReportRequest.MMDeliveryStatus UNRECOGNISED
Since:
MM7 v. 6.4.0

DEFERRED

public static final DeliveryReportRequest.MMDeliveryStatus DEFERRED
Since:
MM7 v. 6.4.0
Method Detail

values

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

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

valueOf

public static DeliveryReportRequest.MMDeliveryStatus 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 DeliveryReportRequest.MMDeliveryStatus fromString(java.lang.String status)
                                                         throws java.lang.IllegalArgumentException
Convert a string representation of a deliver status to a singleton status object.

Parameters:
status - a string returned by toString()
Returns:
the appropriate singleton object
Throws:
java.lang.IllegalArgumentException - if status is not a recognized status string

toString

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