public enum CodeBinaryOperatorType extends Enum<CodeBinaryOperatorType>
| Modifier and Type | Method and Description |
|---|---|
static CodeBinaryOperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeBinaryOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeBinaryOperatorType NONE
public static final CodeBinaryOperatorType ASSIGN
public static final CodeBinaryOperatorType ADD
public static final CodeBinaryOperatorType ADD_ASSIGN
public static final CodeBinaryOperatorType SUBTRACT
public static final CodeBinaryOperatorType SUBTRACT_ASSIGN
public static final CodeBinaryOperatorType MULTIPLY
public static final CodeBinaryOperatorType MULTIPLY_ASSIGN
public static final CodeBinaryOperatorType DIVIDE
public static final CodeBinaryOperatorType DIVIDE_ASSIGN
public static final CodeBinaryOperatorType MODULUS
public static final CodeBinaryOperatorType MODULUS_ASSIGN
public static final CodeBinaryOperatorType BITWISE_OR
public static final CodeBinaryOperatorType BITWISE_OR_ASSIGN
public static final CodeBinaryOperatorType BITWISE_AND
public static final CodeBinaryOperatorType BITWISE_AND_ASSIGN
public static final CodeBinaryOperatorType BITWISE_XOR
public static final CodeBinaryOperatorType BITWISE_XOR_ASSIGN
public static final CodeBinaryOperatorType SHIFT_LEFT
public static final CodeBinaryOperatorType SHIFT_LEFT_ASSIGN
public static final CodeBinaryOperatorType SHIFT_RIGHT
public static final CodeBinaryOperatorType SHIFT_RIGHT_ASSIGN
public static final CodeBinaryOperatorType USHIFT_RIGHT
public static final CodeBinaryOperatorType USHIFT_RIGHT_ASSIGN
public static final CodeBinaryOperatorType BOOLEAN_OR
public static final CodeBinaryOperatorType BOOLEAN_AND
public static final CodeBinaryOperatorType LESS_THAN
public static final CodeBinaryOperatorType LESS_THAN_OR_EQUAL
public static final CodeBinaryOperatorType GREATER_THAN
public static final CodeBinaryOperatorType GREATER_THAN_OR_EQUAL
public static final CodeBinaryOperatorType VALUE_EQUALITY
public static final CodeBinaryOperatorType VALUE_INEQUALITY
public static final CodeBinaryOperatorType IDENTITY_EQUALITY
public static final CodeBinaryOperatorType IDENTITY_INEQUALITY
public static CodeBinaryOperatorType[] values()
for (CodeBinaryOperatorType c : CodeBinaryOperatorType.values()) System.out.println(c);
public static CodeBinaryOperatorType 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 nullCopyright © 2014. All rights reserved.