public final class PrimitiveLogic extends Object
Modifier and Type | Class and Description |
---|---|
static class |
PrimitiveLogic.BooleanAnd
Op that computes the logical AND (&&) of two boolean values.
|
static class |
PrimitiveLogic.BooleanEqual
Op that tests for equality (==) between two boolean values.
|
static class |
PrimitiveLogic.BooleanNot
Op that computes the logical NOT (!) of a boolean value.
|
static class |
PrimitiveLogic.BooleanNotEqual
Op that tests for inequality (!=) between two boolean values.
|
static class |
PrimitiveLogic.BooleanOr
Op that computes the logical OR (||) of two boolean values.
|
static class |
PrimitiveLogic.BooleanXor
Op that computes the logical XOR (^) of two boolean values.
|
static class |
PrimitiveLogic.DoubleEqual
Op that tests for equality (==) between two double values.
|
static class |
PrimitiveLogic.DoubleGreaterThan
Op that performs a greater-than (>) comparison on two double values.
|
static class |
PrimitiveLogic.DoubleGreaterThanOrEqual
Op that performs a greater-than-or-equal (>=) comparison on two double values.
|
static class |
PrimitiveLogic.DoubleLessThan
Op that performs a less-than (<) comparison on two double values.
|
static class |
PrimitiveLogic.DoubleLessThanOrEqual
Op that performs a less-than-or-equal (<=) comparison on two double values.
|
static class |
PrimitiveLogic.DoubleNotEqual
Op that tests for inequality (!=) between two double values.
|
static class |
PrimitiveLogic.FloatEqual
Op that tests for equality (==) between two float values.
|
static class |
PrimitiveLogic.FloatGreaterThan
Op that performs a greater-than (>) comparison on two float values.
|
static class |
PrimitiveLogic.FloatGreaterThanOrEqual
Op that performs a greater-than-or-equal (>=) comparison on two float values.
|
static class |
PrimitiveLogic.FloatLessThan
Op that performs a less-than (<) comparison on two float values.
|
static class |
PrimitiveLogic.FloatLessThanOrEqual
Op that performs a less-than-or-equal (<=) comparison on two float values.
|
static class |
PrimitiveLogic.FloatNotEqual
Op that tests for inequality (!=) between two float values.
|
static class |
PrimitiveLogic.IntegerEqual
Op that tests for equality (==) between two int values.
|
static class |
PrimitiveLogic.IntegerGreaterThan
Op that performs a greater-than (>) comparison on two int values.
|
static class |
PrimitiveLogic.IntegerGreaterThanOrEqual
Op that performs a greater-than-or-equal (>=) comparison on two int values.
|
static class |
PrimitiveLogic.IntegerLessThan
Op that performs a less-than (<) comparison on two int values.
|
static class |
PrimitiveLogic.IntegerLessThanOrEqual
Op that performs a less-than-or-equal (<=) comparison on two int values.
|
static class |
PrimitiveLogic.IntegerNotEqual
Op that tests for inequality (!=) between two int values.
|
static class |
PrimitiveLogic.LongEqual
Op that tests for equality (==) between two long values.
|
static class |
PrimitiveLogic.LongGreaterThan
Op that performs a greater-than (>) comparison on two long values.
|
static class |
PrimitiveLogic.LongGreaterThanOrEqual
Op that performs a greater-than-or-equal (>=) comparison on two long values.
|
static class |
PrimitiveLogic.LongLessThan
Op that performs a less-than (<) comparison on two long values.
|
static class |
PrimitiveLogic.LongLessThanOrEqual
Op that performs a less-than-or-equal (<=) comparison on two long values.
|
static class |
PrimitiveLogic.LongNotEqual
Op that tests for inequality (!=) between two long values.
|
Copyright © 2014–2022 ImageJ. All rights reserved.