public static enum VerilogLiteral.Type extends java.lang.Enum<VerilogLiteral.Type>
VerilogLiteral.Type
contains literal types.Enum Constant and Description |
---|
BIT_VECTOR |
INTEGER |
REAL |
STRING |
Modifier and Type | Method and Description |
---|---|
static VerilogLiteral.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogLiteral.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogLiteral.Type BIT_VECTOR
public static final VerilogLiteral.Type INTEGER
public static final VerilogLiteral.Type REAL
public static final VerilogLiteral.Type STRING
public static VerilogLiteral.Type[] values()
for (VerilogLiteral.Type c : VerilogLiteral.Type.values()) System.out.println(c);
public static VerilogLiteral.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