Interface MinMax
-
@Immutable public interface MinMax
Used for Distributions.bins
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description boolean
isLowerInclusive()
boolean
isUpperInclusive()
int
lowerBoundary()
default int
lowerExclusive()
default int
lowerInclusive()
int
upperBoundary()
default int
upperExclusive()
default int
upperInclusive()
-
-
-
Method Detail
-
lowerBoundary
int lowerBoundary()
-
isLowerInclusive
boolean isLowerInclusive()
-
upperBoundary
int upperBoundary()
-
isUpperInclusive
boolean isUpperInclusive()
-
lowerInclusive
@Derived default int lowerInclusive()
-
upperInclusive
@Derived default int upperInclusive()
-
lowerExclusive
@Derived default int lowerExclusive()
-
upperExclusive
@Derived default int upperExclusive()
-
-