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