public static enum Simulation.SpiceGlobal extends java.lang.Enum<Simulation.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 Simulation.SpiceGlobal |
find(int c) |
int |
getCode() |
static Simulation.SpiceGlobal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Simulation.SpiceGlobal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Simulation.SpiceGlobal NONE
public static final Simulation.SpiceGlobal USEGLOBALBLOCK
public static final Simulation.SpiceGlobal USESUBCKTPORTS
public static Simulation.SpiceGlobal[] values()
for (Simulation.SpiceGlobal c : Simulation.SpiceGlobal.values()) System.out.println(c);
public static Simulation.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 Simulation.SpiceGlobal find(int c)