java.lang.Object
trade.invision.indicators.indicators.operation.binary.BooleanBinaryOperations
public final class BooleanBinaryOperations
extends Object
-
Constructor Summary
Constructors
-
Method Summary
Creates a
Boolean Indicator that invokes the logical
AND binary operation on the given
operands.
Creates a
Boolean Indicator that performs a boolean equality binary comparison using the given
inputs.
Creates a
Boolean Indicator that performs a boolean inequality binary comparison using the given
inputs.
Creates a
Boolean Indicator that invokes the logical
OR binary operation on the given
operands.
Creates a
Boolean Indicator that invokes the logical
XOR (exclusive OR) binary operation
on the given operands.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
BooleanBinaryOperations
public BooleanBinaryOperations()
-
Method Details
-
and
Creates a
Boolean Indicator that invokes the logical
AND binary operation on the given
operands.
- Parameters:
left - the left operand
right - the right operand
- Returns:
- the
Boolean Indicator
- See Also:
-
-
or
Creates a
Boolean Indicator that invokes the logical
OR binary operation on the given
operands.
- Parameters:
left - the left operand
right - the right operand
- Returns:
- the
Boolean Indicator
- See Also:
-
-
xor
Creates a
Boolean Indicator that invokes the logical
XOR (exclusive OR) binary operation
on the given operands.
- Parameters:
left - the left operand
right - the right operand
- Returns:
- the
Boolean Indicator
- See Also:
-
-
isEqual
Creates a
Boolean Indicator that performs a boolean equality binary comparison using the given
inputs.
- Parameters:
left - the left operand
right - the right operand
- Returns:
- the
Boolean Indicator
- See Also:
-
-
isNotEqual
Creates a
Boolean Indicator that performs a boolean inequality binary comparison using the given
inputs.
- Parameters:
left - the left operand
right - the right operand
- Returns:
- the
Boolean Indicator
- See Also:
-