Enum JExprMath.Op
- java.lang.Object
- 
- java.lang.Enum<JExprMath.Op>
- 
- com.inductiveautomation.snap.javatree.JExprMath.Op
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<JExprMath.Op>
 - Enclosing class:
- JExprMath
 
 public static enum JExprMath.Op extends java.lang.Enum<JExprMath.Op> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AddAndAssignmentBitAndBitCompBitOrBitXOrConditionalDivideEqualGreaterThanGreaterThanOrEqualInstanceOfLessThanLessThanOrEqualModMultiplyNegateNotNotEqualOrPostDecrementPostIncrementPreDecrementPreIncrementShiftLeftShiftRightShiftRightUnsignedSubtract
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static JExprMath.OpvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JExprMath.Op[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Addpublic static final JExprMath.Op Add 
 - 
Subtractpublic static final JExprMath.Op Subtract 
 - 
Multiplypublic static final JExprMath.Op Multiply 
 - 
Dividepublic static final JExprMath.Op Divide 
 - 
Modpublic static final JExprMath.Op Mod 
 - 
Equalpublic static final JExprMath.Op Equal 
 - 
NotEqualpublic static final JExprMath.Op NotEqual 
 - 
LessThanpublic static final JExprMath.Op LessThan 
 - 
GreaterThanpublic static final JExprMath.Op GreaterThan 
 - 
LessThanOrEqualpublic static final JExprMath.Op LessThanOrEqual 
 - 
GreaterThanOrEqualpublic static final JExprMath.Op GreaterThanOrEqual 
 - 
Orpublic static final JExprMath.Op Or 
 - 
Andpublic static final JExprMath.Op And 
 - 
Notpublic static final JExprMath.Op Not 
 - 
BitOrpublic static final JExprMath.Op BitOr 
 - 
BitXOrpublic static final JExprMath.Op BitXOr 
 - 
BitAndpublic static final JExprMath.Op BitAnd 
 - 
Conditionalpublic static final JExprMath.Op Conditional 
 - 
Assignmentpublic static final JExprMath.Op Assignment 
 - 
InstanceOfpublic static final JExprMath.Op InstanceOf 
 - 
ShiftLeftpublic static final JExprMath.Op ShiftLeft 
 - 
ShiftRightpublic static final JExprMath.Op ShiftRight 
 - 
ShiftRightUnsignedpublic static final JExprMath.Op ShiftRightUnsigned 
 - 
PreIncrementpublic static final JExprMath.Op PreIncrement 
 - 
PreDecrementpublic static final JExprMath.Op PreDecrement 
 - 
Negatepublic static final JExprMath.Op Negate 
 - 
BitComppublic static final JExprMath.Op BitComp 
 - 
PostIncrementpublic static final JExprMath.Op PostIncrement 
 - 
PostDecrementpublic static final JExprMath.Op PostDecrement 
 
- 
 - 
Method Detail- 
valuespublic static JExprMath.Op[] 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 (JExprMath.Op c : JExprMath.Op.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static JExprMath.Op 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
 
 
- 
 
-