guarana.framework.message
Enum MessagePriority
java.lang.Object
java.lang.Enum<MessagePriority>
guarana.framework.message.MessagePriority
- All Implemented Interfaces:
- Serializable, Comparable<MessagePriority>
public enum MessagePriority
- extends Enum<MessagePriority>
Defines a set of priorities that can be set to a Message
.
Messages with highest priority are processed first in the integration flow.
- Since:
- Guaranį SDK 1.0.0
- Author:
- Rafael Z. Frantz
Method Summary |
static MessagePriority |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MessagePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
LOWEST
public static final MessagePriority LOWEST
LOW
public static final MessagePriority LOW
NORMAL
public static final MessagePriority NORMAL
HIGH
public static final MessagePriority HIGH
HIGHEST
public static final MessagePriority HIGHEST
values
public static MessagePriority[] 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 (MessagePriority c : MessagePriority.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static MessagePriority valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Guaranį DSL Home