Package org.opennms.netmgt.eventd
Enum StandardExpandableParameterResolvers
- java.lang.Object
-
- java.lang.Enum<StandardExpandableParameterResolvers>
-
- org.opennms.netmgt.eventd.StandardExpandableParameterResolvers
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StandardExpandableParameterResolvers>
,ExpandableParameterResolver
public enum StandardExpandableParameterResolvers extends java.lang.Enum<StandardExpandableParameterResolvers> implements ExpandableParameterResolver
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
parse(java.lang.String parm)
boolean
requiresTransaction()
static StandardExpandableParameterResolvers
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StandardExpandableParameterResolvers[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.opennms.netmgt.eventd.processor.expandable.ExpandableParameterResolver
getValue, matches
-
-
-
-
Enum Constant Detail
-
UEI
public static final StandardExpandableParameterResolvers UEI
-
DB_ID
public static final StandardExpandableParameterResolvers DB_ID
-
SOURCE
public static final StandardExpandableParameterResolvers SOURCE
-
DPNAME
public static final StandardExpandableParameterResolvers DPNAME
-
DESCR
public static final StandardExpandableParameterResolvers DESCR
-
LOGMSG
public static final StandardExpandableParameterResolvers LOGMSG
-
NODE_ID
public static final StandardExpandableParameterResolvers NODE_ID
-
TIME
public static final StandardExpandableParameterResolvers TIME
-
SHORT_TIME
public static final StandardExpandableParameterResolvers SHORT_TIME
-
HOST
public static final StandardExpandableParameterResolvers HOST
-
INTERFACE
public static final StandardExpandableParameterResolvers INTERFACE
-
IFINDEX
public static final StandardExpandableParameterResolvers IFINDEX
-
INTERFACE_ADDRESS
public static final StandardExpandableParameterResolvers INTERFACE_ADDRESS
-
PRIMARY_INTERFACE
public static final StandardExpandableParameterResolvers PRIMARY_INTERFACE
-
SNMP_HOST
public static final StandardExpandableParameterResolvers SNMP_HOST
-
SERVICE
public static final StandardExpandableParameterResolvers SERVICE
-
SNMP
public static final StandardExpandableParameterResolvers SNMP
-
SNMP_ID
public static final StandardExpandableParameterResolvers SNMP_ID
-
SNMP_IDTEXT
public static final StandardExpandableParameterResolvers SNMP_IDTEXT
-
SNMP_VERSION
public static final StandardExpandableParameterResolvers SNMP_VERSION
-
SNMP_SPECIFIC
public static final StandardExpandableParameterResolvers SNMP_SPECIFIC
-
SNMP_GENERIC
public static final StandardExpandableParameterResolvers SNMP_GENERIC
-
SNMP_COMMUNITY
public static final StandardExpandableParameterResolvers SNMP_COMMUNITY
-
SEVERITY
public static final StandardExpandableParameterResolvers SEVERITY
-
OPERINSTRUCT
public static final StandardExpandableParameterResolvers OPERINSTRUCT
-
MOUSE_OVER_TEXT
public static final StandardExpandableParameterResolvers MOUSE_OVER_TEXT
-
TTICKET_ID
public static final StandardExpandableParameterResolvers TTICKET_ID
-
PARMS_VALUES
public static final StandardExpandableParameterResolvers PARMS_VALUES
-
PARMS_NAMES
public static final StandardExpandableParameterResolvers PARMS_NAMES
-
PARMS_ALL
public static final StandardExpandableParameterResolvers PARMS_ALL
-
NUM_PARAMS
public static final StandardExpandableParameterResolvers NUM_PARAMS
-
PARM_NUM
public static final StandardExpandableParameterResolvers PARM_NUM
-
PARM_NAME_NUMBERED
public static final StandardExpandableParameterResolvers PARM_NAME_NUMBERED
-
PARM
public static final StandardExpandableParameterResolvers PARM
-
HARDWARE
public static final StandardExpandableParameterResolvers HARDWARE
-
ASSET
public static final StandardExpandableParameterResolvers ASSET
-
NODE_LABEL
public static final StandardExpandableParameterResolvers NODE_LABEL
-
NODE_LOCATION
public static final StandardExpandableParameterResolvers NODE_LOCATION
-
FOREIGN_SOURCE
public static final StandardExpandableParameterResolvers FOREIGN_SOURCE
-
FOREIGN_ID
public static final StandardExpandableParameterResolvers FOREIGN_ID
-
IF_ALIAS
public static final StandardExpandableParameterResolvers IF_ALIAS
-
-
Method Detail
-
values
public static StandardExpandableParameterResolvers[] 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 (StandardExpandableParameterResolvers c : StandardExpandableParameterResolvers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StandardExpandableParameterResolvers 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
-
parse
public java.lang.String parse(java.lang.String parm)
- Specified by:
parse
in interfaceExpandableParameterResolver
-
requiresTransaction
public boolean requiresTransaction()
- Specified by:
requiresTransaction
in interfaceExpandableParameterResolver
-
-