public static enum VerilogElementType.Type extends java.lang.Enum<VerilogElementType.Type>
VerilogElementType.Type
contains the element types.Enum Constant and Description |
---|
INTEGER
INTEGER variable:
integer x . |
REAL
REAL variable:
real x . |
REALTIME
REALTIME variable:
realtime x . |
REG
REG:
reg x . |
SUPPLY0
SUPPLY0 net:
supply0 x . |
SUPPLY1
SUPPLY1 net:
supply1 x . |
TIME
TIME variable:
time x . |
TRI
TRI net:
tri x . |
TRI0
TRI0 net:
tri0 x . |
TRI1
TRI1 net:
tri1 x . |
TRIAND
TRIAND net:
triand x . |
TRIOR
TRIOR net:
trior x . |
TRIREG
TRIREG:
trireg x . |
UNDEFINED
Undefined-type variable:
x . |
UWIRE
UWIRE net:
uwire x . |
WAND
WAND net:
wand x . |
WIRE
WIRE net:
wire x . |
WOR
WOR net:
wor x . |
Modifier and Type | Method and Description |
---|---|
static VerilogElementType.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogElementType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogElementType.Type UNDEFINED
x
.public static final VerilogElementType.Type INTEGER
integer x
.public static final VerilogElementType.Type REAL
real x
.public static final VerilogElementType.Type TIME
time x
.public static final VerilogElementType.Type REALTIME
realtime x
.public static final VerilogElementType.Type SUPPLY0
supply0 x
.public static final VerilogElementType.Type SUPPLY1
supply1 x
.public static final VerilogElementType.Type TRI
tri x
.public static final VerilogElementType.Type TRIAND
triand x
.public static final VerilogElementType.Type TRIOR
trior x
.public static final VerilogElementType.Type TRI0
tri0 x
.public static final VerilogElementType.Type TRI1
tri1 x
.public static final VerilogElementType.Type UWIRE
uwire x
.public static final VerilogElementType.Type WIRE
wire x
.public static final VerilogElementType.Type WAND
wand x
.public static final VerilogElementType.Type WOR
wor x
.public static final VerilogElementType.Type TRIREG
trireg x
.public static final VerilogElementType.Type REG
reg x
.public static VerilogElementType.Type[] values()
for (VerilogElementType.Type c : VerilogElementType.Type.values()) System.out.println(c);
public static VerilogElementType.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