com.eu.miscedautils.verilogparser
Enum FVPGenerateBase.StmtType
java.lang.Object
java.lang.Enum<FVPGenerateBase.StmtType>
com.eu.miscedautils.verilogparser.FVPGenerateBase.StmtType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<FVPGenerateBase.StmtType>
- Enclosing class:
- FVPGenerateBase
public static enum FVPGenerateBase.StmtType
- extends java.lang.Enum<FVPGenerateBase.StmtType>
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
IFGENERATE
public static final FVPGenerateBase.StmtType IFGENERATE
IFGENERATE_ELSE
public static final FVPGenerateBase.StmtType IFGENERATE_ELSE
FORGENERATE
public static final FVPGenerateBase.StmtType FORGENERATE
UNKNOWN
public static final FVPGenerateBase.StmtType UNKNOWN
values
public static FVPGenerateBase.StmtType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (FVPGenerateBase.StmtType c : FVPGenerateBase.StmtType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static FVPGenerateBase.StmtType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null