public static enum VerilogPathDeclaration.Type extends java.lang.Enum<VerilogPathDeclaration.Type>
VerilogPathDeclaration.Type
contains the path declaration types.Enum Constant and Description |
---|
IF
If path declaration:
if(expression) ... . |
IF_NONE
If-none path declaration:
ifnone ... . |
SIMPLE
Simple or edge-sensitive path declartion:
description = delay . |
Modifier and Type | Method and Description |
---|---|
static VerilogPathDeclaration.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogPathDeclaration.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogPathDeclaration.Type SIMPLE
description = delay
.public static final VerilogPathDeclaration.Type IF
if(expression) ...
.public static final VerilogPathDeclaration.Type IF_NONE
ifnone ...
.public static VerilogPathDeclaration.Type[] values()
for (VerilogPathDeclaration.Type c : VerilogPathDeclaration.Type.values()) System.out.println(c);
public static VerilogPathDeclaration.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