Uses of Class
com.io7m.jranges.RangeInclusiveL
-
Packages that use RangeInclusiveL Package Description com.io7m.jranges Core functions and types. -
-
Uses of RangeInclusiveL in com.io7m.jranges
Fields in com.io7m.jranges declared as RangeInclusiveL Modifier and Type Field Description static RangeInclusiveLRanges. NATURAL_LONGThe inclusive range of natural long integers,[0, {@link Long#MAX_VALUE}].static RangeInclusiveLRanges. POSITIVE_LONGThe inclusive range of positive long integers,[1, {@link Long#MAX_VALUE}].Methods in com.io7m.jranges that return RangeInclusiveL Modifier and Type Method Description RangeInclusiveLRangeInclusiveL.Builder. build()Builds a newRangeInclusiveL.static RangeInclusiveLRangeCheck. checkRangeIncludedInLong(RangeInclusiveL inner, java.lang.String inner_name, RangeInclusiveL outer, java.lang.String outer_name)Assert thatinner(namedinner_name) is included in the given rangeouter(namedouter_name).static RangeInclusiveLRangeInclusiveL. copyOf(RangeInclusiveLType instance)Creates an immutable copy of aRangeInclusiveLTypevalue.static RangeInclusiveLRangeInclusiveL. of(long lower, long upper)Construct a new immutableRangeInclusiveLinstance.RangeInclusiveLRangeInclusiveL. withLower(long value)Copy the current immutable object by setting a value for thelowerattribute.RangeInclusiveLRangeInclusiveL. withUpper(long value)Copy the current immutable object by setting a value for theupperattribute.Methods in com.io7m.jranges with parameters of type RangeInclusiveL Modifier and Type Method Description static longRangeCheck. checkIncludedInLong(long x, java.lang.String x_name, RangeInclusiveL range, java.lang.String range_name)Assert thatx(namedx_name) is included in the given rangerange(namedrange_name).static RangeInclusiveLRangeCheck. checkRangeIncludedInLong(RangeInclusiveL inner, java.lang.String inner_name, RangeInclusiveL outer, java.lang.String outer_name)Assert thatinner(namedinner_name) is included in the given rangeouter(namedouter_name).default booleanRangeHalfOpenLType. isIncludedIn(RangeInclusiveL other)Determine if the given range is included in this range.default booleanRangeInclusiveLType. isIncludedIn(RangeInclusiveL other)Determine if the given range is included in this range.
-