Uses of Class
de.xima.fc.utils.range.Endpoint
Packages that use Endpoint
-
Uses of Endpoint in de.xima.fc.utils.range
Classes in de.xima.fc.utils.range that implement interfaces with type arguments of type EndpointModifier and TypeClassDescriptionclassEndpoint<C extends Comparable>POJO class describing an end point of a range, either a lower or upper end point.Fields in de.xima.fc.utils.range declared as EndpointModifier and TypeFieldDescriptionstatic final Endpoint<?> Endpoint.NEGATIVE_INFINITYImmutable singleton instance of the end point representing negative infinity.static final Endpoint<?> Endpoint.POSITIVE_INFINITYImmutable singleton instance of the end point representing positive infinity.Fields in de.xima.fc.utils.range with type parameters of type EndpointModifier and TypeFieldDescriptionstatic final Comparator<Endpoint<Comparable>> Endpoint.CANONICAL_COMPARATORCanonical comparator for two end points.Methods in de.xima.fc.utils.range that return EndpointModifier and TypeMethodDescriptionstatic <C extends Comparable>
Endpoint<C> Endpoint.closed(C point, EndpointDirection direction) static <C extends Comparable>
Endpoint<C> Endpoint.finite(C point, com.google.common.collect.BoundType boundType, EndpointDirection direction) static <C extends Comparable>
Endpoint<C> Endpoint.infinite(EndpointDirection direction) static <C extends Comparable>
Endpoint<C> Endpoint.lower(C point, com.google.common.collect.BoundType boundType) static <C extends Comparable>
Endpoint<C> Endpoint.lowerClosed(C point) static <C extends Comparable>
Endpoint<C> Endpoint.lowerOpen(C point) static <C extends Comparable>
Endpoint<C> Endpoint.negativeInfinity()static <C extends Comparable>
Endpoint<C> Endpoint.of(C point, EndpointDescriptor descriptor) static <T, C extends Comparable>
Endpoint<C> Endpoint.of(T item, EndpointAccessor<T, C> accessor) static <C extends Comparable>
Endpoint<C> Endpoint.open(C point, EndpointDirection direction) static <C extends Comparable>
Endpoint<C> Endpoint.positiveInfinity()EndpointAccessor.toEndpoint(T item) default <C extends Comparable>
Endpoint<C> EndpointDescriptor.toEndpoint(C point) static <C extends Comparable>
Endpoint<C> Endpoint.upper(C point, com.google.common.collect.BoundType boundType) static <C extends Comparable>
Endpoint<C> Endpoint.upperClosed(C point) static <C extends Comparable>
Endpoint<C> Endpoint.upperOpen(C point) Methods in de.xima.fc.utils.range that return types with arguments of type EndpointModifier and TypeMethodDescriptionstatic <C extends Comparable>
Comparator<Endpoint<C>> Endpoint.createComparator()static <C extends Comparable>
Comparator<Endpoint<C>> Endpoint.createComparator(EndpointTypeComparator comparator) Methods in de.xima.fc.utils.range with parameters of type Endpoint