Uses of Class
com.io7m.jranges.RangeInclusiveI
-
Packages that use RangeInclusiveI Package Description com.io7m.jranges Core functions and types. -
-
Uses of RangeInclusiveI in com.io7m.jranges
Fields in com.io7m.jranges declared as RangeInclusiveI Modifier and Type Field Description static RangeInclusiveIRanges. NATURAL_INTEGERThe inclusive range of natural integers,[0, {@link Integer#MAX_VALUE}].static RangeInclusiveIRanges. POSITIVE_INTEGERThe inclusive range of positive integers,[1, {@link Integer#MAX_VALUE}].Methods in com.io7m.jranges that return RangeInclusiveI Modifier and Type Method Description RangeInclusiveIRangeInclusiveI.Builder. build()Builds a newRangeInclusiveI.static RangeInclusiveIRangeCheck. checkRangeIncludedInInteger(RangeInclusiveI inner, java.lang.String inner_name, RangeInclusiveI outer, java.lang.String outer_name)Assert thatinner(namedinner_name) is included in the given rangeouter(namedouter_name).static RangeInclusiveIRangeInclusiveI. copyOf(RangeInclusiveIType instance)Creates an immutable copy of aRangeInclusiveITypevalue.static RangeInclusiveIRangeInclusiveI. of(int lower, int upper)Construct a new immutableRangeInclusiveIinstance.RangeInclusiveIRangeInclusiveI. withLower(int value)Copy the current immutable object by setting a value for thelowerattribute.RangeInclusiveIRangeInclusiveI. withUpper(int value)Copy the current immutable object by setting a value for theupperattribute.Methods in com.io7m.jranges with parameters of type RangeInclusiveI Modifier and Type Method Description static intRangeCheck. checkIncludedInInteger(int x, java.lang.String x_name, RangeInclusiveI range, java.lang.String range_name)Assert thatx(namedx_name) is included in the given rangerange(namedrange_name).static RangeInclusiveIRangeCheck. checkRangeIncludedInInteger(RangeInclusiveI inner, java.lang.String inner_name, RangeInclusiveI outer, java.lang.String outer_name)Assert thatinner(namedinner_name) is included in the given rangeouter(namedouter_name).default booleanRangeHalfOpenIType. isIncludedIn(RangeInclusiveI other)Determine if the given range is included in this range.default booleanRangeInclusiveIType. isIncludedIn(RangeInclusiveI other)Determine if the given range is included in this range.
-