Uses of Class
org.aksw.commons.util.range.Endpoint
Packages that use Endpoint
-
Uses of Endpoint in org.aksw.commons.util.range
Methods in org.aksw.commons.util.range that return EndpointModifier and TypeMethodDescriptionstatic <T> Endpoint<T>Endpoint.closed(T value) static <T extends Comparable<T>>
Endpoint<T>RangeUtils.getLowerEndpoint(com.google.common.collect.Range<T> range) static <T extends Comparable<T>>
Endpoint<T>RangeUtils.getUpperEndpoint(com.google.common.collect.Range<T> range) static <T> Endpoint<T>Endpoint.of(T value, com.google.common.collect.BoundType boundType) static <T> Endpoint<T>Endpoint.open(T value) Endpoint.toggleBoundType()Create a new endpoint with the bound type toggled.Methods in org.aksw.commons.util.range with parameters of type EndpointModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
com.google.common.collect.Range<T>Create a range from two endpoints.Method parameters in org.aksw.commons.util.range with type arguments of type EndpointModifier and TypeMethodDescriptionstatic <I extends Comparable<I>,O extends Comparable<O>>
com.google.common.collect.Range<O>RangeUtils.map(com.google.common.collect.Range<I> range, BiFunction<? super I, com.google.common.collect.BoundType, Endpoint<? extends O>> lowerEndpointMapper, BiFunction<? super I, com.google.common.collect.BoundType, Endpoint<? extends O>> upperEndpointMapper) Return a new range with each lower and upper endpoint of the input range passed through a separate transformation function.