public static enum VerilogIfGenerateBranch.Type extends java.lang.Enum<VerilogIfGenerateBranch.Type>
VerilogIfGenerateBranch.Type
contains the branch types.Enum Constant and Description |
---|
ELSE
Branch
else (the condition is not satisfied). |
THEN
Branch
then (the condition is satisfied). |
Modifier and Type | Method and Description |
---|---|
static VerilogIfGenerateBranch.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerilogIfGenerateBranch.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerilogIfGenerateBranch.Type THEN
then
(the condition is satisfied).public static final VerilogIfGenerateBranch.Type ELSE
else
(the condition is not satisfied).public static VerilogIfGenerateBranch.Type[] values()
for (VerilogIfGenerateBranch.Type c : VerilogIfGenerateBranch.Type.values()) System.out.println(c);
public static VerilogIfGenerateBranch.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