com.eu.miscedautils.verilogparser
Enum FVPExprBinary.OpType
java.lang.Object
java.lang.Enum<FVPExprBinary.OpType>
com.eu.miscedautils.verilogparser.FVPExprBinary.OpType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<FVPExprBinary.OpType>
- Enclosing class:
- FVPExprBinary
public static enum FVPExprBinary.OpType
- extends java.lang.Enum<FVPExprBinary.OpType>
Method Summary |
static FVPExprBinary.OpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FVPExprBinary.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 |
PLUS
public static final FVPExprBinary.OpType PLUS
MINUS
public static final FVPExprBinary.OpType MINUS
STAR
public static final FVPExprBinary.OpType STAR
DIV
public static final FVPExprBinary.OpType DIV
MOD
public static final FVPExprBinary.OpType MOD
EQUAL
public static final FVPExprBinary.OpType EQUAL
NOT_EQ
public static final FVPExprBinary.OpType NOT_EQ
EQ_CASE
public static final FVPExprBinary.OpType EQ_CASE
NOT_EQ_CASE
public static final FVPExprBinary.OpType NOT_EQ_CASE
LAND
public static final FVPExprBinary.OpType LAND
LOR
public static final FVPExprBinary.OpType LOR
LT
public static final FVPExprBinary.OpType LT
LE
public static final FVPExprBinary.OpType LE
GT
public static final FVPExprBinary.OpType GT
GE
public static final FVPExprBinary.OpType GE
BAND
public static final FVPExprBinary.OpType BAND
BOR
public static final FVPExprBinary.OpType BOR
BXOR
public static final FVPExprBinary.OpType BXOR
BXNOR
public static final FVPExprBinary.OpType BXNOR
SR
public static final FVPExprBinary.OpType SR
SL
public static final FVPExprBinary.OpType SL
SSR
public static final FVPExprBinary.OpType SSR
SSL
public static final FVPExprBinary.OpType SSL
POWER
public static final FVPExprBinary.OpType POWER
RNAND
public static final FVPExprBinary.OpType RNAND
RNOR
public static final FVPExprBinary.OpType RNOR
UNKNOWN
public static final FVPExprBinary.OpType UNKNOWN
values
public static FVPExprBinary.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 (FVPExprBinary.OpType c : FVPExprBinary.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 FVPExprBinary.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