Uses of Interface
com.opengamma.strata.collect.function.ObjDoublePredicate
-
Packages that use ObjDoublePredicate Package Description com.opengamma.strata.collect.function Additional functional interfaces not supplied by Java SE 8.com.opengamma.strata.collect.timeseries Time-series data structures. -
-
Uses of ObjDoublePredicate in com.opengamma.strata.collect.function
Methods in com.opengamma.strata.collect.function that return ObjDoublePredicate Modifier and Type Method Description default ObjDoublePredicate<T>
ObjDoublePredicate. and(ObjDoublePredicate<? super T> other)
Returns a new predicate that returns true if both predicates return true.default ObjDoublePredicate<T>
ObjDoublePredicate. negate()
Returns a new predicate that negates the result of this predicate.default ObjDoublePredicate<T>
ObjDoublePredicate. or(ObjDoublePredicate<? super T> other)
Returns a new predicate that returns true if either predicates returns true.Methods in com.opengamma.strata.collect.function with parameters of type ObjDoublePredicate Modifier and Type Method Description default ObjDoublePredicate<T>
ObjDoublePredicate. and(ObjDoublePredicate<? super T> other)
Returns a new predicate that returns true if both predicates return true.default ObjDoublePredicate<T>
ObjDoublePredicate. or(ObjDoublePredicate<? super T> other)
Returns a new predicate that returns true if either predicates returns true. -
Uses of ObjDoublePredicate in com.opengamma.strata.collect.timeseries
Methods in com.opengamma.strata.collect.timeseries with parameters of type ObjDoublePredicate Modifier and Type Method Description LocalDateDoubleTimeSeries
LocalDateDoubleTimeSeries. filter(ObjDoublePredicate<LocalDate> predicate)
Create a new time-series by filtering this one.default Pair<LocalDateDoubleTimeSeries,LocalDateDoubleTimeSeries>
LocalDateDoubleTimeSeries. partition(ObjDoublePredicate<LocalDate> predicate)
Partition the time-series into a pair of distinct series using a predicate.
-