Enum BinaryOperator
- java.lang.Object
-
- java.lang.Enum<BinaryOperator>
-
- org.apache.sling.scripting.sightly.compiler.expression.nodes.BinaryOperator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BinaryOperator>
public enum BinaryOperator extends java.lang.Enum<BinaryOperator>
Binary operators used in expressions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDAddition.ANDLogical conjunction.CONCATENATEString concatenation.DIVFloating point division.EQEqual.GEQGreater or equal.GTGreater than.I_DIVInteger division.INLEQLess or equal.LTLess than.MULMultiplication.NEQNot equal.ORLogical disjunction.REMReminder.STRICT_EQStrict version of equality, restricted to just some types.STRICT_NEQStrict version of the not-equal operator.SUBDifference.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static booleaneq(java.lang.Object left, java.lang.Object right)abstract java.lang.Objecteval(java.lang.Object left, java.lang.Object right)static booleaninOp(java.lang.Object left, java.lang.Object right)static booleanleq(java.lang.Object left, java.lang.Object right)static booleanlt(java.lang.Object left, java.lang.Object right)static booleanstrictEq(java.lang.Object left, java.lang.Object right)static BinaryOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BinaryOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AND
public static final BinaryOperator AND
Logical conjunction.
-
OR
public static final BinaryOperator OR
Logical disjunction.
-
CONCATENATE
public static final BinaryOperator CONCATENATE
String concatenation.
-
LT
public static final BinaryOperator LT
Less than.
-
LEQ
public static final BinaryOperator LEQ
Less or equal.
-
GT
public static final BinaryOperator GT
Greater than.
-
GEQ
public static final BinaryOperator GEQ
Greater or equal.
-
EQ
public static final BinaryOperator EQ
Equal.
-
NEQ
public static final BinaryOperator NEQ
Not equal.
-
STRICT_EQ
public static final BinaryOperator STRICT_EQ
Strict version of equality, restricted to just some types.
-
STRICT_NEQ
public static final BinaryOperator STRICT_NEQ
Strict version of the not-equal operator.
-
ADD
public static final BinaryOperator ADD
Addition.
-
SUB
public static final BinaryOperator SUB
Difference.
-
MUL
public static final BinaryOperator MUL
Multiplication.
-
DIV
public static final BinaryOperator DIV
Floating point division.
-
I_DIV
public static final BinaryOperator I_DIV
Integer division.
-
REM
public static final BinaryOperator REM
Reminder.
-
IN
public static final BinaryOperator IN
-
-
Method Detail
-
values
public static BinaryOperator[] 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 (BinaryOperator c : BinaryOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BinaryOperator 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 namejava.lang.NullPointerException- if the argument is null
-
eq
public static boolean eq(java.lang.Object left, java.lang.Object right)
-
lt
public static boolean lt(java.lang.Object left, java.lang.Object right)
-
leq
public static boolean leq(java.lang.Object left, java.lang.Object right)
-
strictEq
public static boolean strictEq(java.lang.Object left, java.lang.Object right)
-
inOp
public static boolean inOp(java.lang.Object left, java.lang.Object right)
-
eval
public abstract java.lang.Object eval(java.lang.Object left, java.lang.Object right)
-
-