private static enum BinaryArithmeticNode.ReassociateMatch extends Enum<BinaryArithmeticNode.ReassociateMatch>
Modifier and Type | Method and Description |
---|---|
ValueNode |
getOtherValue(BinaryNode binary) |
ValueNode |
getValue(BinaryNode binary) |
static BinaryArithmeticNode.ReassociateMatch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryArithmeticNode.ReassociateMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryArithmeticNode.ReassociateMatch x
public static final BinaryArithmeticNode.ReassociateMatch y
public static BinaryArithmeticNode.ReassociateMatch[] values()
for (BinaryArithmeticNode.ReassociateMatch c : BinaryArithmeticNode.ReassociateMatch.values()) System.out.println(c);
public static BinaryArithmeticNode.ReassociateMatch valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic ValueNode getValue(BinaryNode binary)
public ValueNode getOtherValue(BinaryNode binary)