public enum ActionParameter extends Enum<ActionParameter>
Java class for ActionParameter.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ActionParameter">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="targetName"/>
<enumeration value="alarmName"/>
<enumeration value="oldStatus"/>
<enumeration value="newStatus"/>
<enumeration value="triggeringSummary"/>
<enumeration value="declaringSummary"/>
<enumeration value="eventDescription"/>
<enumeration value="target"/>
<enumeration value="alarm"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALARM |
ALARM_NAME |
DECLARING_SUMMARY |
EVENT_DESCRIPTION |
NEW_STATUS |
OLD_STATUS |
TARGET |
TARGET_NAME |
TRIGGERING_SUMMARY |
| Modifier and Type | Method and Description |
|---|---|
static ActionParameter |
fromValue(String v) |
String |
value() |
static ActionParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionParameter TARGET_NAME
public static final ActionParameter ALARM_NAME
public static final ActionParameter OLD_STATUS
public static final ActionParameter NEW_STATUS
public static final ActionParameter TRIGGERING_SUMMARY
public static final ActionParameter DECLARING_SUMMARY
public static final ActionParameter EVENT_DESCRIPTION
public static final ActionParameter TARGET
public static final ActionParameter ALARM
public static ActionParameter[] values()
for (ActionParameter c : ActionParameter.values()) System.out.println(c);
public static ActionParameter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ActionParameter fromValue(String v)
Copyright © 2018. All rights reserved.