com.eu.miscedautils.verilogparser
Enum FVPExprUnary.OpType
java.lang.Object
java.lang.Enum<FVPExprUnary.OpType>
com.eu.miscedautils.verilogparser.FVPExprUnary.OpType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<FVPExprUnary.OpType>
- Enclosing class:
- FVPExprUnary
public static enum FVPExprUnary.OpType
- extends java.lang.Enum<FVPExprUnary.OpType>
Method Summary |
static FVPExprUnary.OpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FVPExprUnary.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 FVPExprUnary.OpType PLUS
MINUS
public static final FVPExprUnary.OpType MINUS
LNOT
public static final FVPExprUnary.OpType LNOT
BNOT
public static final FVPExprUnary.OpType BNOT
BAND
public static final FVPExprUnary.OpType BAND
RNAND
public static final FVPExprUnary.OpType RNAND
BOR
public static final FVPExprUnary.OpType BOR
RNOR
public static final FVPExprUnary.OpType RNOR
BXOR
public static final FVPExprUnary.OpType BXOR
BXNOR
public static final FVPExprUnary.OpType BXNOR
UNKNOWN
public static final FVPExprUnary.OpType UNKNOWN
values
public static FVPExprUnary.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 (FVPExprUnary.OpType c : FVPExprUnary.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 FVPExprUnary.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