public static enum MmuConditionAtom.Type extends java.lang.Enum<MmuConditionAtom.Type>
Enum Constant and Description |
---|
EQ_EXPR_CONST
Constraint:
lhsExpr == rhsConst . |
EQ_EXPR_EXPR
Constraint:
lhsExpr == rhsExpr . |
EQ_SAME_EXPR
Constraint:
lhsExpr[1] == rhsExpr[2] . |
IN_EXPR_RANGE
Constraint:
lhsVar in rhsRange . |
Modifier and Type | Method and Description |
---|---|
static MmuConditionAtom.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MmuConditionAtom.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MmuConditionAtom.Type EQ_EXPR_EXPR
lhsExpr == rhsExpr
.public static final MmuConditionAtom.Type EQ_SAME_EXPR
lhsExpr[1] == rhsExpr[2]
.public static final MmuConditionAtom.Type EQ_EXPR_CONST
lhsExpr == rhsConst
.public static final MmuConditionAtom.Type IN_EXPR_RANGE
lhsVar in rhsRange
.public static MmuConditionAtom.Type[] values()
for (MmuConditionAtom.Type c : MmuConditionAtom.Type.values()) System.out.println(c);
public static MmuConditionAtom.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null