Enum MessageSubscriptionEvent.MessageSubscriptionEvents
- java.lang.Object
-
- java.lang.Enum<MessageSubscriptionEvent.MessageSubscriptionEvents>
-
- org.activiti.api.process.model.events.MessageSubscriptionEvent.MessageSubscriptionEvents
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MessageSubscriptionEvent.MessageSubscriptionEvents>
- Enclosing interface:
- MessageSubscriptionEvent
public static enum MessageSubscriptionEvent.MessageSubscriptionEvents extends java.lang.Enum<MessageSubscriptionEvent.MessageSubscriptionEvents>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MESSAGE_SUBSCRIPTION_CANCELLED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageSubscriptionEvent.MessageSubscriptionEventsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MessageSubscriptionEvent.MessageSubscriptionEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGE_SUBSCRIPTION_CANCELLED
public static final MessageSubscriptionEvent.MessageSubscriptionEvents MESSAGE_SUBSCRIPTION_CANCELLED
-
-
Method Detail
-
values
public static MessageSubscriptionEvent.MessageSubscriptionEvents[] 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 (MessageSubscriptionEvent.MessageSubscriptionEvents c : MessageSubscriptionEvent.MessageSubscriptionEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageSubscriptionEvent.MessageSubscriptionEvents 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 namejava.lang.NullPointerException- if the argument is null
-
-