Package io.deephaven.kv
Class Equal
java.lang.Object
io.deephaven.kv.Equal
- All Implemented Interfaces:
Condition
A condition which evaluates to true iff the
KeyValue.getValue() at getPath() is
exactly equal to getValue().-
Method Summary
Modifier and TypeMethodDescriptiondescribe()getPath()byte[]getValue()static Equalvoidtraverse(@NotNull ConditionVisitor visitor) Invokes the appropriately typedConditionVisitormethod that corresponds to the concrete type of thisCondition.
-
Method Details
-
of
-
getPath
-
getValue
public byte[] getValue() -
traverse
Description copied from interface:ConditionInvokes the appropriately typedConditionVisitormethod that corresponds to the concrete type of thisCondition.Thus, all implementations are essentially
visitor.visit((ConcreteType)this). -
describe
-