public static enum VerilogDeclaration.Type extends java.lang.Enum<VerilogDeclaration.Type>
VerilogDeclaration.Type
contains the declaration types.Enum Constant and Description |
---|
EVENT
Event declaration:
event x . |
GENVAR
Generate variable declaration:
genvar x . |
INOUT
Input/output declaration:
inout x . |
INPUT
Input declaration:
input x . |
LOCALPARAM
Local parameter declaration:
localparam x . |
OUTPUT
Output declaration:
output x . |
PARAMETER
Parameter declaration:
parameter x . |
SPECPARAM
Specify parameter declaration:
specparam x . |
VARIABLE
Local variable declaration:
x . |
Modifier and Type | Method and Description |
---|---|
static VerilogDeclaration.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogDeclaration.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogDeclaration.Type INPUT
input x
.public static final VerilogDeclaration.Type OUTPUT
output x
.public static final VerilogDeclaration.Type INOUT
inout x
.public static final VerilogDeclaration.Type EVENT
event x
.public static final VerilogDeclaration.Type PARAMETER
parameter x
.public static final VerilogDeclaration.Type SPECPARAM
specparam x
.public static final VerilogDeclaration.Type LOCALPARAM
localparam x
.public static final VerilogDeclaration.Type GENVAR
genvar x
.public static final VerilogDeclaration.Type VARIABLE
x
.public static VerilogDeclaration.Type[] values()
for (VerilogDeclaration.Type c : VerilogDeclaration.Type.values()) System.out.println(c);
public static VerilogDeclaration.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