com.eu.miscedautils.verilogparser
Enum FVPSeqStmtBase.StmtType

java.lang.Object
  extended by java.lang.Enum<FVPSeqStmtBase.StmtType>
      extended by com.eu.miscedautils.verilogparser.FVPSeqStmtBase.StmtType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FVPSeqStmtBase.StmtType>
Enclosing class:
FVPSeqStmtBase

public static enum FVPSeqStmtBase.StmtType
extends java.lang.Enum<FVPSeqStmtBase.StmtType>


Enum Constant Summary
ALWAYS_BLOCK
           
INITIAL_BLOCK
           
PROCEDURAL_CONT_ASSIGNMENT
           
SEQ_ASSIGNMENT
           
SEQ_CASE_ITEM
           
SEQ_CASE_STMT
           
SEQ_ELSE_STMT
           
SEQ_FOR_LOOP
           
SEQ_IF_STMT
           
SEQ_LOOP_STMT
           
SEQ_NULL
           
SEQ_TASK_CALL
           
SEQ_UNKNOWN
           
SEQ_WAIT_STMT
           
SEQ_WHILE_LOOP
           
SYSTEM_TASK_CALL
           
 
Method Summary
static FVPSeqStmtBase.StmtType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FVPSeqStmtBase.StmtType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

SEQ_ASSIGNMENT

public static final FVPSeqStmtBase.StmtType SEQ_ASSIGNMENT

PROCEDURAL_CONT_ASSIGNMENT

public static final FVPSeqStmtBase.StmtType PROCEDURAL_CONT_ASSIGNMENT

SEQ_IF_STMT

public static final FVPSeqStmtBase.StmtType SEQ_IF_STMT

SEQ_ELSE_STMT

public static final FVPSeqStmtBase.StmtType SEQ_ELSE_STMT

SEQ_WHILE_LOOP

public static final FVPSeqStmtBase.StmtType SEQ_WHILE_LOOP

SEQ_FOR_LOOP

public static final FVPSeqStmtBase.StmtType SEQ_FOR_LOOP

SEQ_CASE_ITEM

public static final FVPSeqStmtBase.StmtType SEQ_CASE_ITEM

SEQ_CASE_STMT

public static final FVPSeqStmtBase.StmtType SEQ_CASE_STMT

SEQ_LOOP_STMT

public static final FVPSeqStmtBase.StmtType SEQ_LOOP_STMT

SEQ_NULL

public static final FVPSeqStmtBase.StmtType SEQ_NULL

SEQ_WAIT_STMT

public static final FVPSeqStmtBase.StmtType SEQ_WAIT_STMT

SEQ_TASK_CALL

public static final FVPSeqStmtBase.StmtType SEQ_TASK_CALL

ALWAYS_BLOCK

public static final FVPSeqStmtBase.StmtType ALWAYS_BLOCK

INITIAL_BLOCK

public static final FVPSeqStmtBase.StmtType INITIAL_BLOCK

SYSTEM_TASK_CALL

public static final FVPSeqStmtBase.StmtType SYSTEM_TASK_CALL

SEQ_UNKNOWN

public static final FVPSeqStmtBase.StmtType SEQ_UNKNOWN
Method Detail

values

public static FVPSeqStmtBase.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 (FVPSeqStmtBase.StmtType c : FVPSeqStmtBase.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 FVPSeqStmtBase.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