com.eu.miscedautils.vhdlparser
Enum FVhPExprBinary.OpType

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

public static enum FVhPExprBinary.OpType
extends java.lang.Enum<FVhPExprBinary.OpType>


Enum Constant Summary
AMPERSAND
           
AND
           
DIV
           
DOUBLESTAR
           
EQ
           
GE
           
GREATERTHAN
           
LE
           
LOWERTHAN
           
MINUS
           
MOD
           
MUL
           
NAND
           
NEQ
           
NOR
           
OR
           
PLUS
           
REM
           
ROL
           
ROR
           
SLA
           
SLL
           
SRA
           
SRL
           
UNKNOWN
           
XNOR
           
XOR
           
 
Method Summary
static FVhPExprBinary.OpType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FVhPExprBinary.OpType[] 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

DOUBLESTAR

public static final FVhPExprBinary.OpType DOUBLESTAR

MUL

public static final FVhPExprBinary.OpType MUL

DIV

public static final FVhPExprBinary.OpType DIV

MOD

public static final FVhPExprBinary.OpType MOD

REM

public static final FVhPExprBinary.OpType REM

EQ

public static final FVhPExprBinary.OpType EQ

NEQ

public static final FVhPExprBinary.OpType NEQ

LOWERTHAN

public static final FVhPExprBinary.OpType LOWERTHAN

LE

public static final FVhPExprBinary.OpType LE

GREATERTHAN

public static final FVhPExprBinary.OpType GREATERTHAN

GE

public static final FVhPExprBinary.OpType GE

SLL

public static final FVhPExprBinary.OpType SLL

SRL

public static final FVhPExprBinary.OpType SRL

SLA

public static final FVhPExprBinary.OpType SLA

SRA

public static final FVhPExprBinary.OpType SRA

ROL

public static final FVhPExprBinary.OpType ROL

ROR

public static final FVhPExprBinary.OpType ROR

PLUS

public static final FVhPExprBinary.OpType PLUS

MINUS

public static final FVhPExprBinary.OpType MINUS

AMPERSAND

public static final FVhPExprBinary.OpType AMPERSAND

AND

public static final FVhPExprBinary.OpType AND

OR

public static final FVhPExprBinary.OpType OR

NAND

public static final FVhPExprBinary.OpType NAND

NOR

public static final FVhPExprBinary.OpType NOR

XOR

public static final FVhPExprBinary.OpType XOR

XNOR

public static final FVhPExprBinary.OpType XNOR

UNKNOWN

public static final FVhPExprBinary.OpType UNKNOWN
Method Detail

values

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

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

valueOf

public static FVhPExprBinary.OpType 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