mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22789 Add method on Segment
to compute sub sequence on demand
This commit is contained in:
parent
0655a2358e
commit
28c2e2b216
1 changed files with 10 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue