public static enum VerilogNode.Tag extends java.lang.Enum<VerilogNode.Tag>
VerilogNode.Tag
contains the node types.Modifier and Type | Method and Description |
---|---|
static VerilogNode.Tag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogNode.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogNode.Tag CODE
public static final VerilogNode.Tag MODULE
public static final VerilogNode.Tag PORT
public static final VerilogNode.Tag DECLARATION
public static final VerilogNode.Tag ACTIVITY
public static final VerilogNode.Tag ASSIGN
public static final VerilogNode.Tag ASSIGNMENT
public static final VerilogNode.Tag INSTANTIATION
public static final VerilogNode.Tag DEFINE_PARAMETER
public static final VerilogNode.Tag PORT_CONNECTION
public static final VerilogNode.Tag PROCEDURE
public static final VerilogNode.Tag TABLE
public static final VerilogNode.Tag TABLE_ENTRY
public static final VerilogNode.Tag NULL_STATEMENT
public static final VerilogNode.Tag ASSIGN_STATEMENT
public static final VerilogNode.Tag TASK_STATEMENT
public static final VerilogNode.Tag WAIT_STATEMENT
public static final VerilogNode.Tag DISABLE_STATEMENT
public static final VerilogNode.Tag TRIGGER_STATEMENT
public static final VerilogNode.Tag DELAYED_STATEMENT
public static final VerilogNode.Tag IF_STATEMENT
public static final VerilogNode.Tag IF_STATEMENT_BRANCH
public static final VerilogNode.Tag CASE_STATEMENT
public static final VerilogNode.Tag CASE_STATEMENT_ITEM
public static final VerilogNode.Tag LOOP_STATEMENT
public static final VerilogNode.Tag BLOCK_STATEMENT
public static final VerilogNode.Tag GENERATE
public static final VerilogNode.Tag IF_GENERATE
public static final VerilogNode.Tag IF_GENERATE_BRANCH
public static final VerilogNode.Tag CASE_GENERATE
public static final VerilogNode.Tag CASE_GENERATE_ITEM
public static final VerilogNode.Tag LOOP_GENERATE
public static final VerilogNode.Tag BLOCK_GENERATE
public static final VerilogNode.Tag SPECIFY
public static final VerilogNode.Tag PULSE_STYLE
public static final VerilogNode.Tag SHOW_CANCELLED
public static final VerilogNode.Tag PATH_DECLARATION
public static final VerilogNode.Tag ATTRIBUTE
public static VerilogNode.Tag[] values()
for (VerilogNode.Tag c : VerilogNode.Tag.values()) System.out.println(c);
public static VerilogNode.Tag 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