public static enum VerilogLoopStatement.Type extends java.lang.Enum<VerilogLoopStatement.Type>
VerilogLoopStatement.Type
contains the loop statement types.Enum Constant and Description |
---|
FOR
For loop:
for(a; b; c) ... . |
FOREVER
Forever loop:
forever ... . |
REPEAT
Forever loop:
repeat(n) ... . |
WHILE
While loop:
while(c) ... . |
Modifier and Type | Method and Description |
---|---|
static VerilogLoopStatement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogLoopStatement.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogLoopStatement.Type FOREVER
forever ...
.public static final VerilogLoopStatement.Type REPEAT
repeat(n) ...
.public static final VerilogLoopStatement.Type WHILE
while(c) ...
.public static final VerilogLoopStatement.Type FOR
for(a; b; c) ...
.public static VerilogLoopStatement.Type[] values()
for (VerilogLoopStatement.Type c : VerilogLoopStatement.Type.values()) System.out.println(c);
public static VerilogLoopStatement.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