ICU-22789 Add method on Segment to compute sub sequence on demand

This commit is contained in:
Elango Cheran 2025-04-04 11:31:17 -07:00
parent 0655a2358e
commit 28c2e2b216

View file

@ -135,13 +135,22 @@ public interface Segments {
public final int start;
public final int limit;
public final int ruleStatus = 0;
public final CharSequence source;
private final CharSequence source;
public Segment(int start, int limit, CharSequence source) {
this.start = start;
this.limit = limit;
this.source = source;
}
/**
* Return the subsequence represented by this {@code Segment}
* @return a new {@code CharSequence} object that is the subsequence represented by this
* {@code Segment}.
*/
public CharSequence getSubSequence() {
return source.subSequence(this.start, this.limit);
}
}
/**