public static enum VerilogBinding.Type extends java.lang.Enum<VerilogBinding.Type>
Enum Constant and Description |
---|
CURRENT_CONTEXT
Current bindings should be applied.
|
FINAL
Right-hand-side expression is final.
|
PARENT_CONTEXT
Parent bindings should be applied.
|
Modifier and Type | Method and Description |
---|---|
static VerilogBinding.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogBinding.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogBinding.Type FINAL
public static final VerilogBinding.Type CURRENT_CONTEXT
public static final VerilogBinding.Type PARENT_CONTEXT
public static VerilogBinding.Type[] values()
for (VerilogBinding.Type c : VerilogBinding.Type.values()) System.out.println(c);
public static VerilogBinding.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