Uses of Interface
org.miaixz.bus.core.lang.range.Bound
Packages that use Bound
Package
Description
-
Uses of Bound in org.miaixz.bus.core.lang.range
Classes in org.miaixz.bus.core.lang.range that implement BoundModifier and TypeClassDescriptionclassFiniteBound<T extends Comparable<? super T>>由一个有限值构成的边界classNoneLowerBound<T extends Comparable<? super T>>无限小的左边界classNoneUpperBound<T extends Comparable<? super T>>无限大的右边界Methods in org.miaixz.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()对当前边界取反FiniteBound.negate()对当前边界取反NoneLowerBound.negate()对当前边界取反NoneUpperBound.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.miaixz.bus.core.lang.range with parameters of type BoundModifier and TypeMethodDescriptionint比较另一边界与当前边界在坐标轴上位置的先后顺序。 若令当前边界为t1,另一边界为t2,则有 -1:t1在t2的左侧; 0:t1与t2的重合; -1:t1在t2的右侧;int比较另一边界与当前边界在坐标轴上位置的先后顺序。 若令当前边界为t1,另一边界为t2,则有 -1:t1在t2的左侧; 0:t1与t2的重合; -1:t1在t2的右侧;int比较另一边界与当前边界在坐标轴上位置的先后顺序。 若令当前边界为t1,另一边界为t2,则有 -1:t1在t2的左侧; 0:t1与t2的重合; -1:t1在t2的右侧;(不存在)int比较另一边界与当前边界在坐标轴上位置的先后顺序。 若令当前边界为t1,另一边界为t2,则有 -1:t1在t2的左侧; 0:t1与t2的重合; -1:t1在t2的右侧;