public static enum McastStore.Type extends java.lang.Enum<McastStore.Type>
Enum Constant and Description |
---|
ADD
Adding a route to the mcast rib.
|
REMOVE
Removing a route from the mcast rib.
|
Modifier and Type | Method and Description |
---|---|
static McastStore.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static McastStore.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final McastStore.Type ADD
public static final McastStore.Type REMOVE
public static McastStore.Type[] values()
for (McastStore.Type c : McastStore.Type.values()) System.out.println(c);
public static McastStore.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