public static enum Netlist.ShortResistors extends java.lang.Enum<Netlist.ShortResistors>
Enum Constant and Description |
---|
ALL
All resistors are shortened
|
NO
No resistors are shortened
|
PARASITIC
Resistors are shortened except poly resistors
|
Modifier and Type | Method and Description |
---|---|
static Netlist.ShortResistors |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Netlist.ShortResistors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Netlist.ShortResistors NO
public static final Netlist.ShortResistors PARASITIC
public static final Netlist.ShortResistors ALL
public static Netlist.ShortResistors[] values()
for (Netlist.ShortResistors c : Netlist.ShortResistors.values()) System.out.println(c);
public static Netlist.ShortResistors 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