public static enum SimulationTool.SpiceGlobal extends java.lang.Enum<SimulationTool.SpiceGlobal>
Enum Constant and Description |
---|
NONE |
USEGLOBALBLOCK
no special treatment of global signals in Spice output.
|
USESUBCKTPORTS
Use .GLOBAL block for global signals in Spice output.
|
Modifier and Type | Method and Description |
---|---|
static SimulationTool.SpiceGlobal |
find(int c) |
int |
getCode() |
static SimulationTool.SpiceGlobal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimulationTool.SpiceGlobal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimulationTool.SpiceGlobal NONE
public static final SimulationTool.SpiceGlobal USEGLOBALBLOCK
public static final SimulationTool.SpiceGlobal USESUBCKTPORTS
public static SimulationTool.SpiceGlobal[] values()
for (SimulationTool.SpiceGlobal c : SimulationTool.SpiceGlobal.values()) System.out.println(c);
public static SimulationTool.SpiceGlobal 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 nullpublic int getCode()
public static SimulationTool.SpiceGlobal find(int c)