public static enum SCRunBase.GateType extends java.lang.Enum<SCRunBase.GateType>
Enum Constant and Description |
---|
INV
Inverter
|
INVCLK
Clock threshold inverter
|
INVHT
High threshold inverter
|
INVLT
Low threshold inverter
|
NAND2
2 input NAND
|
NAND2CLKEN
2 input NAND
|
NAND2EN
2 input NAND
|
NAND3
3 input NAND
|
NOR2
2 input NOR
|
XOR2
2 input XOR
|
Modifier and Type | Method and Description |
---|---|
static SCRunBase.GateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SCRunBase.GateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCRunBase.GateType INV
public static final SCRunBase.GateType INVHT
public static final SCRunBase.GateType INVLT
public static final SCRunBase.GateType INVCLK
public static final SCRunBase.GateType NAND2EN
public static final SCRunBase.GateType NAND2CLKEN
public static final SCRunBase.GateType NAND2
public static final SCRunBase.GateType NAND3
public static final SCRunBase.GateType NOR2
public static final SCRunBase.GateType XOR2
public static SCRunBase.GateType[] values()
for (SCRunBase.GateType c : SCRunBase.GateType.values()) System.out.println(c);
public static SCRunBase.GateType 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