com.bmc.arsys.api
Enum SignalType
java.lang.Object
java.lang.Enum<SignalType>
com.bmc.arsys.api.SignalType
- All Implemented Interfaces:
- Serializable, Comparable<SignalType>
public enum SignalType
- extends Enum<SignalType>
Method Summary |
int |
value()
|
static SignalType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SignalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
CONFIG_CHANGED
public static final SignalType CONFIG_CHANGED
GROUP_CACHE_CHANGED
public static final SignalType GROUP_CACHE_CHANGED
LICENSE_CHANGED
public static final SignalType LICENSE_CHANGED
ALERT_USER_CHANGED
public static final SignalType ALERT_USER_CHANGED
DSO_SIGNAL
public static final SignalType DSO_SIGNAL
USER_CACHE_CHANGED
public static final SignalType USER_CACHE_CHANGED
APPLICATION_SIGNAL
public static final SignalType APPLICATION_SIGNAL
ARCHIVE_CHANGED
public static final SignalType ARCHIVE_CHANGED
ESCALATION_CHANGED
public static final SignalType ESCALATION_CHANGED
RECACHE
public static final SignalType RECACHE
COMPUTED_GROUP_CHANGED
public static final SignalType COMPUTED_GROUP_CHANGED
values
public static SignalType[] 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 (SignalType c : SignalType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SignalType 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 name
NullPointerException
- if the argument is null
value
public int value()
© Copyright 2006, 2007 BMC Software, Inc.