public enum DispositionTriggerType extends java.lang.Enum<DispositionTriggerType>
DispositionTrigger
Enum Constant and Description |
---|
ExternalEventTrigger
Represents a disposition trigger whose expected
time frame is unknown.
|
InternalEventTrigger
Represents a disposition trigger that is based upon
a property value criteria.
|
PredefinedDateTrigger
Represents a disposition trigger defined by a
specific, predefined date value.
|
RecurringEventTigger
Represents a disposition trigger that periodically reoccurs.
|
Modifier and Type | Method and Description |
---|---|
static DispositionTriggerType |
getInstanceFromInt(int intValue)
Provides the
DispositionTriggerType instance that corresponds to the given
int value. |
int |
getIntValue()
Returns the integer value associated with this member.
|
static DispositionTriggerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DispositionTriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispositionTriggerType PredefinedDateTrigger
public static final DispositionTriggerType ExternalEventTrigger
public static final DispositionTriggerType InternalEventTrigger
public static final DispositionTriggerType RecurringEventTigger
public static DispositionTriggerType[] values()
for (DispositionTriggerType c : DispositionTriggerType.values()) System.out.println(c);
public static DispositionTriggerType 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 int getIntValue()
int
value.public static DispositionTriggerType getInstanceFromInt(int intValue)
DispositionTriggerType
instance that corresponds to the given
int
value.intValue
- the int
value to look up.DispositionTriggerType
value or null
if no such value
corresponds to the given intValue
parameter.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.