public static enum CfmMepEvent.Type extends java.lang.Enum<CfmMepEvent.Type>
Enum Constant and Description |
---|
MEP_ADDED
Signifies that a new Mep has been detected.
|
MEP_FAULT_ALARM
Signifies that the MEP has raised a fault alarm.
|
MEP_REMOVED
Signifies that a Mep has been removed.
|
MEP_UPDATED
Signifies that a Mep has been updated.
|
Modifier and Type | Method and Description |
---|---|
static CfmMepEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CfmMepEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CfmMepEvent.Type MEP_ADDED
public static final CfmMepEvent.Type MEP_REMOVED
public static final CfmMepEvent.Type MEP_UPDATED
public static final CfmMepEvent.Type MEP_FAULT_ALARM
public static CfmMepEvent.Type[] values()
for (CfmMepEvent.Type c : CfmMepEvent.Type.values()) System.out.println(c);
public static CfmMepEvent.Type 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 null