Enum Constant and Description |
---|
DONT_CARE |
GLOBAL_CLOCK |
GROUND |
LOCAL_CLOCK |
POWER |
REGIONAL_CLOCK |
SIGNAL |
UNCONNECTED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static PortType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortType UNKNOWN
public static final PortType LOCAL_CLOCK
public static final PortType GLOBAL_CLOCK
public static final PortType REGIONAL_CLOCK
public static final PortType POWER
public static final PortType GROUND
public static final PortType UNCONNECTED
public static final PortType DONT_CARE
public static final PortType SIGNAL
public static PortType[] values()
for (PortType c : PortType.values()) System.out.println(c);
public static PortType 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