public static enum VerilogParameter.Type extends java.lang.Enum<VerilogParameter.Type>
Enum Constant and Description |
---|
DEFPARAM
Parameter override (define parameter statement).
|
LOCALPARAM
Local parameter (cannot be overridden).
|
OVERRIDE
Parameter override (instantiation).
|
PARAMETER
Parameter definition.
|
SPECPARAM
Specification parameter (cannot be overridden).
|
Modifier and Type | Method and Description |
---|---|
int |
getPriority() |
static VerilogParameter.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogParameter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogParameter.Type PARAMETER
public static final VerilogParameter.Type OVERRIDE
public static final VerilogParameter.Type DEFPARAM
public static final VerilogParameter.Type LOCALPARAM
public static final VerilogParameter.Type SPECPARAM
public static VerilogParameter.Type[] values()
for (VerilogParameter.Type c : VerilogParameter.Type.values()) System.out.println(c);
public static VerilogParameter.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 nullpublic int getPriority()