public static enum WorklistConstants.WorklistItemUpdateType extends java.lang.Enum<WorklistConstants.WorklistItemUpdateType>
| Enum Constant and Description |
|---|
ADDED
The item has been added.
|
ADDED_OR_CHANGED
The item has been added, or if it is already present, change it.
|
CHANGED
The worklist item has been changed.
|
REMOVED
The item has been removed.
|
REMOVED_OR_NOTHING
The item has been removed, or if it is not present, ignore the update.
|
| Modifier and Type | Method and Description |
|---|---|
static WorklistConstants.WorklistItemUpdateType[] |
hardUpdateTypes()
Gets the update item types of which the change is sure and well-known.
|
static WorklistConstants.WorklistItemUpdateType[] |
softUpdateTypes()
Gets the update item types of which the change is unsure.
|
static WorklistConstants.WorklistItemUpdateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorklistConstants.WorklistItemUpdateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorklistConstants.WorklistItemUpdateType CHANGED
public static final WorklistConstants.WorklistItemUpdateType ADDED
public static final WorklistConstants.WorklistItemUpdateType REMOVED
public static final WorklistConstants.WorklistItemUpdateType ADDED_OR_CHANGED
public static final WorklistConstants.WorklistItemUpdateType REMOVED_OR_NOTHING
public static WorklistConstants.WorklistItemUpdateType[] values()
for (WorklistConstants.WorklistItemUpdateType c : WorklistConstants.WorklistItemUpdateType.values()) System.out.println(c);
public static WorklistConstants.WorklistItemUpdateType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static WorklistConstants.WorklistItemUpdateType[] hardUpdateTypes()
public static WorklistConstants.WorklistItemUpdateType[] softUpdateTypes()