public static enum McastEvent.Type extends 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. 
 | 
SOURCE_UPDATED
A source for a mcast route has been updated. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static McastEvent.Type | 
valueOf(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 SOURCE_UPDATED
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(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 null