public enum RouteNodeType extends Enum<RouteNodeType>
Enum Constant and Description |
---|
LAGUNA_I
|
PINBOUNCE
Denotes
RouteNode objects that are created based on Node Objects
that have an IntentCode of NODE_PINBOUNCE. |
PINFEED_I
Denotes
RouteNode objects that correspond to input pins of Net Objects,
typically the sink RouteNode Objects of Connection Objects. |
PINFEED_O
Denotes
RouteNode objects that correspond to the output pins of Net Objects,
typically the source RouteNode Objects of Connection Objects. |
SUPER_LONG_LINE
|
WIRE
Denotes other wiring
RouteNode Objects
that are created for routing Connection Objects. |
Modifier and Type | Method and Description |
---|---|
static RouteNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RouteNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RouteNodeType PINFEED_O
RouteNode
objects that correspond to the output pins of Net
Objects,
typically the source RouteNode
Objects of Connection
Objects.public static final RouteNodeType PINFEED_I
RouteNode
objects that correspond to input pins of Net
Objects,
typically the sink RouteNode
Objects of Connection
Objects.public static final RouteNodeType PINBOUNCE
RouteNode
objects that are created based on Node
Objects
that have an IntentCode
of NODE_PINBOUNCE.public static final RouteNodeType SUPER_LONG_LINE
public static final RouteNodeType LAGUNA_I
public static final RouteNodeType WIRE
RouteNode
Objects
that are created for routing Connection
Objects.public static RouteNodeType[] values()
for (RouteNodeType c : RouteNodeType.values()) System.out.println(c);
public static RouteNodeType 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