public static enum VerilogVariable.Type extends java.lang.Enum<VerilogVariable.Type>
Enum Constant and Description |
---|
BINDING
Binding (does not require memory).
|
VARIABLE
Real variable (requires memory).
|
Modifier and Type | Method and Description |
---|---|
static VerilogVariable.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogVariable.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogVariable.Type VARIABLE
public static final VerilogVariable.Type BINDING
public static VerilogVariable.Type[] values()
for (VerilogVariable.Type c : VerilogVariable.Type.values()) System.out.println(c);
public static VerilogVariable.Type 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