public static enum MappingInstruction.Type extends Enum<MappingInstruction.Type>
| Enum Constant and Description |
|---|
EXTENSION
Signifies that an extension instruction will be used.
|
MULTICAST
Signifies that the traffic should be multi-casted with TE parameters.
|
UNICAST
Signifies that the traffic should be uni-casted with TE parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingInstruction.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingInstruction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingInstruction.Type UNICAST
public static final MappingInstruction.Type MULTICAST
public static final MappingInstruction.Type EXTENSION
public static MappingInstruction.Type[] values()
for (MappingInstruction.Type c : MappingInstruction.Type.values()) System.out.println(c);
public static MappingInstruction.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