public static enum Constants.NetworkElementType extends Enum<Constants.NetworkElementType>
Enum Constant and Description |
---|
DEMAND |
LINK |
NETWORK |
NODE |
ROUTE |
SEGMENT |
Modifier and Type | Method and Description |
---|---|
static Constants.NetworkElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.NetworkElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.NetworkElementType NETWORK
public static final Constants.NetworkElementType NODE
public static final Constants.NetworkElementType LINK
public static final Constants.NetworkElementType DEMAND
public static final Constants.NetworkElementType ROUTE
public static final Constants.NetworkElementType SEGMENT
public static Constants.NetworkElementType[] values()
for (Constants.NetworkElementType c : Constants.NetworkElementType.values()) System.out.println(c);
public static Constants.NetworkElementType 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