public static enum VerilogBlockStatement.Type extends java.lang.Enum<VerilogBlockStatement.Type>
VerilogBlockStatement.Type
contains the block statement types.Enum Constant and Description |
---|
BEGIN
Sequential block: {@code begin ...
|
FORK
Parallel block: {@code fork ...
|
Modifier and Type | Method and Description |
---|---|
static VerilogBlockStatement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogBlockStatement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogBlockStatement.Type BEGIN
begin ... end
.public static final VerilogBlockStatement.Type FORK
fork ... end
.public static VerilogBlockStatement.Type[] values()
for (VerilogBlockStatement.Type c : VerilogBlockStatement.Type.values()) System.out.println(c);
public static VerilogBlockStatement.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