Uses of Interface
org.aoju.bus.core.lang.range.Bound
Packages that use Bound
Package
Description
-
Uses of Bound in org.aoju.bus.core.lang.range
Methods in org.aoju.bus.core.lang.range that return BoundModifier and TypeMethodDescriptionstatic <T extends Comparable<? super T>>
Bound<T> Bound.atLeast(T min) {x | x >= min}static <T extends Comparable<? super T>>
Bound<T> Bound.atMost(T max) {x | x <= max}BoundedRange.getLowerBound()获取下界BoundedRange.getUpperBound()获取上界static <T extends Comparable<? super T>>
Bound<T> Bound.greaterThan(T min) {x | x > min}static <T extends Comparable<? super T>>
Bound<T> Bound.lessThan(T max) {x | x < max}Bound.negate()对当前边界取反static <T extends Comparable<? super T>>
Bound<T> Bound.noneLowerBound(){x | x > -∞}static <T extends Comparable<? super T>>
Bound<T> Bound.noneUpperBound(){x | x < +∞}Methods in org.aoju.bus.core.lang.range with parameters of type Bound