com.eu.miscedautils.vhdlparser
Enum FVhPExprBase.ExprType

java.lang.Object
  extended by java.lang.Enum<FVhPExprBase.ExprType>
      extended by com.eu.miscedautils.vhdlparser.FVhPExprBase.ExprType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FVhPExprBase.ExprType>
Enclosing class:
FVhPExprBase

public static enum FVhPExprBase.ExprType
extends java.lang.Enum<FVhPExprBase.ExprType>


Enum Constant Summary
AGGREGATE
           
ALLOCATOR
           
ATTRIBUTE
           
BINARY
           
BITSELECT
           
CONCATENATION
           
CONSTBASEDDECIMAL
           
CONSTBITSTRING
           
CONSTINTEGER
           
CONSTSIMPLEDECIMAL
           
ENUMLITERAL
           
FUNCTIONCALL
           
IDENTIFIER
           
NULLEXPR
           
OPENEXPR
           
OTHERS
           
PARTSELECT
           
PHYSICALLITERAL
           
QUALIFIED
           
UNARY
           
UNKNOWN
           
 
Method Summary
static FVhPExprBase.ExprType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FVhPExprBase.ExprType[] 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

NULLEXPR

public static final FVhPExprBase.ExprType NULLEXPR

ALLOCATOR

public static final FVhPExprBase.ExprType ALLOCATOR

FUNCTIONCALL

public static final FVhPExprBase.ExprType FUNCTIONCALL

OPENEXPR

public static final FVhPExprBase.ExprType OPENEXPR

QUALIFIED

public static final FVhPExprBase.ExprType QUALIFIED

IDENTIFIER

public static final FVhPExprBase.ExprType IDENTIFIER

CONSTSIMPLEDECIMAL

public static final FVhPExprBase.ExprType CONSTSIMPLEDECIMAL

CONSTBASEDDECIMAL

public static final FVhPExprBase.ExprType CONSTBASEDDECIMAL

PHYSICALLITERAL

public static final FVhPExprBase.ExprType PHYSICALLITERAL

ENUMLITERAL

public static final FVhPExprBase.ExprType ENUMLITERAL

BITSELECT

public static final FVhPExprBase.ExprType BITSELECT

PARTSELECT

public static final FVhPExprBase.ExprType PARTSELECT

CONCATENATION

public static final FVhPExprBase.ExprType CONCATENATION

CONSTBITSTRING

public static final FVhPExprBase.ExprType CONSTBITSTRING

CONSTINTEGER

public static final FVhPExprBase.ExprType CONSTINTEGER

UNARY

public static final FVhPExprBase.ExprType UNARY

BINARY

public static final FVhPExprBase.ExprType BINARY

ATTRIBUTE

public static final FVhPExprBase.ExprType ATTRIBUTE

AGGREGATE

public static final FVhPExprBase.ExprType AGGREGATE

OTHERS

public static final FVhPExprBase.ExprType OTHERS

UNKNOWN

public static final FVhPExprBase.ExprType UNKNOWN
Method Detail

values

public static FVhPExprBase.ExprType[] 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 (FVhPExprBase.ExprType c : FVhPExprBase.ExprType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FVhPExprBase.ExprType 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