Enum MessageFlag
- java.lang.Object
-
- java.lang.Enum<MessageFlag>
-
- com.flowable.engage.engine.impl.dto.MessageFlag
-
- All Implemented Interfaces:
Serializable
,Comparable<MessageFlag>
public enum MessageFlag extends Enum<MessageFlag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EDITED
NOTIFIABLE
PRIVATE
SELECTABLE
SEPARATED
STICKY
SYSTEM
TRANSIENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static MessageFlag
valueOf(String name)
Returns the enum constant of this type with the specified name.static MessageFlag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EDITED
public static final MessageFlag EDITED
-
NOTIFIABLE
public static final MessageFlag NOTIFIABLE
-
PRIVATE
public static final MessageFlag PRIVATE
-
SELECTABLE
public static final MessageFlag SELECTABLE
-
SEPARATED
public static final MessageFlag SEPARATED
-
STICKY
public static final MessageFlag STICKY
-
TRANSIENT
public static final MessageFlag TRANSIENT
-
SYSTEM
public static final MessageFlag SYSTEM
-
-
Field Detail
-
value
protected final String value
-
-
Method Detail
-
values
public static MessageFlag[] 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 (MessageFlag c : MessageFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageFlag 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 nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
-
-