Uses of Interface
de.xima.fc.utils.range.EndpointDescriptor
-
Packages that use EndpointDescriptor Package Description de.xima.fc.utils.range -
-
Uses of EndpointDescriptor in de.xima.fc.utils.range
Classes in de.xima.fc.utils.range that implement EndpointDescriptor Modifier and Type Class Description class
Endpoint<C extends Comparable>
POJO class describing an end point of a range, either a lower or upper end point.class
EndpointDescriptors
An enumeration with implementations ofEndpointDescriptor
s.Methods in de.xima.fc.utils.range that return EndpointDescriptor Modifier and Type Method Description static EndpointDescriptor
EndpointDescriptors. lower(com.google.common.collect.BoundType boundType)
static EndpointDescriptor
EndpointDescriptors. lower(com.google.common.collect.Range<?> range)
default EndpointDescriptor
EndpointAccessor. toDescriptor(T item)
Creates an endpoint descriptor describing the endpoint of held by the given item.static EndpointDescriptor
EndpointDescriptors. upper(com.google.common.collect.BoundType boundType)
static EndpointDescriptor
EndpointDescriptors. upper(com.google.common.collect.Range<?> range)
Methods in de.xima.fc.utils.range with parameters of type EndpointDescriptor Modifier and Type Method Description static <C extends Comparable>
com.google.common.collect.Range<C>RangeUtils. createRange(C lower, EndpointDescriptor lowerDesc, C upper, EndpointDescriptor upperDesc)
Creates a range from two end points.static <C extends Comparable>
Endpoint<C>Endpoint. of(C point, EndpointDescriptor descriptor)
-