SearchResult.MatchRange

public final class SearchResult.MatchRange


Class providing the position range of matching information.

All ranges are finite, and the left side of the range is always <= the right side of the range.

Example: MatchRange(0, 100) represents hundred ints from 0 to 99."

Summary

Public constructors

MatchRange(int start, int end)

Creates a new immutable range.

Public methods

boolean
int

Gets the end point (exclusive).

int

Gets the start point (inclusive).

int
@NonNull String

Public constructors

MatchRange

Added in 1.1.0-alpha04
public MatchRange(int start, int end)

Creates a new immutable range.

The endpoints are [start, end); that is the range is bounded. start must be lesser or equal to end.

Parameters
int start

The start point (inclusive)

int end

The end point (exclusive)

Public methods

equals

public boolean equals(@Nullable Object other)

getEnd

Added in 1.1.0-alpha04
public int getEnd()

Gets the end point (exclusive).

getStart

Added in 1.1.0-alpha04
public int getStart()

Gets the start point (inclusive).

hashCode

public int hashCode()

toString

public @NonNull String toString()