com.opencloud.slee.resources.mm7
Enum ReadReplyReportRequest.MMReadStatus

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

public static enum ReadReplyReportRequest.MMReadStatus
extends java.lang.Enum<ReadReplyReportRequest.MMReadStatus>

Enum for Read Reply Report mmStatus codes


Enum Constant Summary
DELETED
           
INDETERMINATE
           
READ
           
 
Method Summary
static ReadReplyReportRequest.MMReadStatus fromString(java.lang.String status)
          Convert a string representation of a read status to a singleton status object.
 java.lang.String toString()
           
static ReadReplyReportRequest.MMReadStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ReadReplyReportRequest.MMReadStatus[] 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

INDETERMINATE

public static final ReadReplyReportRequest.MMReadStatus INDETERMINATE

READ

public static final ReadReplyReportRequest.MMReadStatus READ

DELETED

public static final ReadReplyReportRequest.MMReadStatus DELETED
Method Detail

values

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

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

valueOf

public static ReadReplyReportRequest.MMReadStatus 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 ReadReplyReportRequest.MMReadStatus fromString(java.lang.String status)
Convert a string representation of a read 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<ReadReplyReportRequest.MMReadStatus>