public static enum VerilogShowCancelled.Type extends java.lang.Enum<VerilogShowCancelled.Type>
VerilogShowCancelled
contains the show-cancelled construct types.Enum Constant and Description |
---|
NO_SHOW
No show:
noshowcancelled x . |
SHOW
Show:
showcancelled x . |
Modifier and Type | Method and Description |
---|---|
static VerilogShowCancelled.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogShowCancelled.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogShowCancelled.Type SHOW
showcancelled x
.public static final VerilogShowCancelled.Type NO_SHOW
noshowcancelled x
.public static VerilogShowCancelled.Type[] values()
for (VerilogShowCancelled.Type c : VerilogShowCancelled.Type.values()) System.out.println(c);
public static VerilogShowCancelled.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