public enum VerilogStandard extends java.lang.Enum<VerilogStandard>
VerilogStandard
contains Verilog standards' identifiers.Enum Constant and Description |
---|
IEEE_1364_1995 |
IEEE_1364_2001 |
IEEE_1364_2001_NC |
IEEE_1364_2005 |
Modifier and Type | Method and Description |
---|---|
int |
getLevel() |
java.lang.String |
getName() |
boolean |
isCompliantWith(VerilogStandard standard) |
static VerilogStandard |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogStandard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogStandard IEEE_1364_1995
public static final VerilogStandard IEEE_1364_2001_NC
public static final VerilogStandard IEEE_1364_2001
public static final VerilogStandard IEEE_1364_2005
public static VerilogStandard[] values()
for (VerilogStandard c : VerilogStandard.values()) System.out.println(c);
public static VerilogStandard 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 java.lang.String getName()
public int getLevel()
public boolean isCompliantWith(VerilogStandard standard)