public static enum VerilogActivity.Type extends java.lang.Enum<VerilogActivity.Type>
VerilogActivity.Type
contains the process types.Enum Constant and Description |
---|
ALWAYS
Ordinary process:
always ... . |
INITIAL
Initial process:
initial ... . |
Modifier and Type | Method and Description |
---|---|
static VerilogActivity.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogActivity.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogActivity.Type ALWAYS
always ...
.public static final VerilogActivity.Type INITIAL
initial ...
.public static VerilogActivity.Type[] values()
for (VerilogActivity.Type c : VerilogActivity.Type.values()) System.out.println(c);
public static VerilogActivity.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