com.reverseXSL.types
Class Priority

java.lang.Object
  extended by com.reverseXSL.types.Priority
All Implemented Interfaces:
java.io.Serializable

public final class Priority
extends java.lang.Object
implements java.io.Serializable

Defines message priority (header level): Urgent, Normal, Low

See Also:
Serialized Form

Field Summary
static Priority LOW
          Low priority message; may be batched for delayed transmission
static Priority NORMAL
          Default Priority; just process on the fly
static Priority[] table
          May be used to iterate over all possible enumeration values.
static Priority URGENT
          Urgent message; shall be processed first; can pass in front of other messages and/or be routed through specific/reserved communication channels
 
Method Summary
 boolean equals(java.lang.Object obj)
           
static Priority find(java.lang.String key)
           
 java.lang.String toString()
          Provides a default string rendering with long name followed by (CODE) as would be used when using a member like Priority.CODE.
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

LOW

public static final Priority LOW
Low priority message; may be batched for delayed transmission


NORMAL

public static final Priority NORMAL
Default Priority; just process on the fly


table

public static final Priority[] table
May be used to iterate over all possible enumeration values.


URGENT

public static final Priority URGENT
Urgent message; shall be processed first; can pass in front of other messages and/or be routed through specific/reserved communication channels

Method Detail

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

find

public static Priority find(java.lang.String key)

toString

public java.lang.String toString()
Provides a default string rendering with long name followed by (CODE) as would be used when using a member like Priority.CODE.

Overrides:
toString in class java.lang.Object