public interface RangePredicate extends Predicate
Modifier and Type | Method and Description |
---|---|
String |
getAttribute() |
Comparable |
getFrom() |
Comparable |
getTo() |
boolean |
isFromInclusive() |
boolean |
isToInclusive() |
String getAttribute()
Comparable getFrom()
null
if
the predicate range is left-unbounded.boolean isFromInclusive()
true
if the predicate range is left-closed, false
otherwise.
Can't be true
if the predicate range is left-unbounded.
Comparable getTo()
null
if
the predicate range is right-unbounded.boolean isToInclusive()
true
if the predicate range is right-closed, false
otherwise.
Can't be true
if the predicate range is right-unbounded.
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.