public static enum VerilogAssignStatement.Type extends java.lang.Enum<VerilogAssignStatement.Type>
VerilogAssignStatement.Type
contains the assignment statement types.Enum Constant and Description |
---|
ASSIGN
Continuous assignment:
assign r = e . |
BLOCKING
Blocking assignment:
r = e . |
DEASSIGN
Deassignment:
deassign r . |
FORCE
Force assignment:
force r = e . |
NON_BLOCKING
Non-blocking assignment:
r <= e . |
RELEASE
Release:
release r . |
Modifier and Type | Method and Description |
---|---|
static VerilogAssignStatement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogAssignStatement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogAssignStatement.Type BLOCKING
r = e
.public static final VerilogAssignStatement.Type NON_BLOCKING
r <= e
.public static final VerilogAssignStatement.Type ASSIGN
assign r = e
.public static final VerilogAssignStatement.Type DEASSIGN
deassign r
.public static final VerilogAssignStatement.Type FORCE
force r = e
.public static final VerilogAssignStatement.Type RELEASE
release r
.public static VerilogAssignStatement.Type[] values()
for (VerilogAssignStatement.Type c : VerilogAssignStatement.Type.values()) System.out.println(c);
public static VerilogAssignStatement.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