Uses of Interface
com.gengoai.collection.tree.Span
-
Packages that use Span Package Description com.gengoai.collection.tree com.gengoai.string Functions, predicates, and utilities to create, format, parse, and manipulate strings. -
-
Uses of Span in com.gengoai.collection.tree
Classes in com.gengoai.collection.tree with type parameters of type Span Modifier and Type Class Description class
IntervalTree<T extends Span>
An Tree structure with fast lookups for elements falling within a given interval.Classes in com.gengoai.collection.tree that implement Span Modifier and Type Class Description class
SimpleSpan
The type Simple span.Methods in com.gengoai.collection.tree that return Span Modifier and Type Method Description static Span
Span. of(int start, int end)
Of span.Methods in com.gengoai.collection.tree with parameters of type Span Modifier and Type Method Description default int
Span. compareTo(Span o)
boolean
IntervalTree. containsOverlappingSpans(@NonNull Span span)
default boolean
Span. encloses(Span other)
Returns true if the bounds of the other text do not extend outside the bounds of this text.Iterable<T>
IntervalTree. overlapping(@NonNull Span span)
Returns the collection of elements in this set overlapping with the given span including.default boolean
Span. overlaps(Span other)
Returns true if the bounds of other text are connected with the bounds of this text. -
Uses of Span in com.gengoai.string
Methods in com.gengoai.string that return Span Modifier and Type Method Description static Span
Strings. expand(String txt, int start, int end)
Expand int pair.
-