public static enum McastEvent.Type extends java.lang.Enum<McastEvent.Type>
Enum Constant and Description |
---|
ROUTE_ADDED
A new mcast route has been added.
|
ROUTE_REMOVED
A mcast route has been removed.
|
SINK_ADDED
A sink for a mcast route (ie.
|
SINK_REMOVED
A source for a mcast route (ie.
|
SOURCE_ADDED
A source for a mcast route (ie.
|
Modifier and Type | Method and Description |
---|---|
static McastEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static McastEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final McastEvent.Type ROUTE_ADDED
public static final McastEvent.Type ROUTE_REMOVED
public static final McastEvent.Type SOURCE_ADDED
public static final McastEvent.Type SINK_ADDED
public static final McastEvent.Type SINK_REMOVED
public static McastEvent.Type[] values()
for (McastEvent.Type c : McastEvent.Type.values()) System.out.println(c);
public static McastEvent.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