public static enum VerilogPathDescription.Polarity extends java.lang.Enum<VerilogPathDescription.Polarity>
VerilogPathDescription.Polarity
contains the polarity types.Enum Constant and Description |
---|
MINUS
Negative polarity.
|
PLUS
Positive polarity.
|
UNDEFINED
Undefined polarity.
|
Modifier and Type | Method and Description |
---|---|
static VerilogPathDescription.Polarity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogPathDescription.Polarity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogPathDescription.Polarity UNDEFINED
public static final VerilogPathDescription.Polarity PLUS
public static final VerilogPathDescription.Polarity MINUS
public static VerilogPathDescription.Polarity[] values()
for (VerilogPathDescription.Polarity c : VerilogPathDescription.Polarity.values()) System.out.println(c);
public static VerilogPathDescription.Polarity 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