Package-level declarations

Types

Link copied to clipboard

Node that represents Intervals.after.

Link copied to clipboard

Node that represents Intervals.analyzedText.

Link copied to clipboard
class AtLeast(minShouldMatch: Int, sources: List<IntervalFunction>) : IntervalFunction

Node that represents Intervals.atLeast.

Link copied to clipboard

Node that represents Intervals.before.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class Extend(source: IntervalFunction, before: Int, after: Int) : IntervalFunction

Node that represents Intervals.extend.

Link copied to clipboard
class FuzzyTerm(term: String, maxEdits: Int?, maxExpansions: Int?) : IntervalFunction

An interval function equivalent to FuzzyQuery. A fuzzy term expands to a disjunction of intervals of terms that are within the specified maxEdits from the provided term. A limit of maxExpansions prevents the internal implementation from blowing up on too many potential candidate terms.

Link copied to clipboard
abstract class IntervalFunction

Representation of an interval function that can be converted to IntervalsSource.

Link copied to clipboard
class MaxGaps(maxGaps: Int, source: IntervalFunction) : IntervalFunction

Node that represents Intervals.maxgaps.

Link copied to clipboard

Node that represents Intervals.maxwidth.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Node that represents Intervals.notContaining.

Link copied to clipboard
class NotWithin(minuend: IntervalFunction, positions: Int, subtrahend: IntervalFunction) : IntervalFunction

Node that represents Intervals.notWithin.

Link copied to clipboard

Node that represents Intervals.or.

Link copied to clipboard

Node that represents Intervals.ordered.

Link copied to clipboard

Node that represents Intervals.overlapping.

Link copied to clipboard

Node that represents Intervals.phrase.

Link copied to clipboard

Node that represents Intervals.unordered.

Link copied to clipboard
class Wildcard(wildcard: String, maxExpansions: Int) : IntervalFunction

Node that represents Intervals.wildcard.

Link copied to clipboard
class Within(source: IntervalFunction, positions: Int, reference: IntervalFunction) : IntervalFunction

Node that represents Intervals.within.