public static enum VerilogRange.Type extends java.lang.Enum<VerilogRange.Type>
VerilogRange.Type
contains the range types.Enum Constant and Description |
---|
MINUS
Minus range:
[upper -: width] . |
PLUS
Plus range:
[lower +: width] . |
RANGE
Usual range:
[upper : lower] . |
Modifier and Type | Method and Description |
---|---|
static VerilogRange.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogRange.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogRange.Type RANGE
[upper : lower]
.public static final VerilogRange.Type PLUS
[lower +: width]
.public static final VerilogRange.Type MINUS
[upper -: width]
.public static VerilogRange.Type[] values()
for (VerilogRange.Type c : VerilogRange.Type.values()) System.out.println(c);
public static VerilogRange.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