Top Description Methods
jdk.internal.icu.text

public Interface Replaceable

Known Direct Implementers
jdk.internal.icu.text.ReplaceableString

Replaceable is an interface representing a string of characters that supports the replacement of a range of itself with a new string of characters. It is used by APIs that change a piece of text while retaining metadata. Metadata is data other than the Unicode characters returned by char32At(). One example of metadata is style attributes; another is an edit history, marking each character with an author and revision number.

An implicit aspect of the Replaceable API is that during a replace operation, new characters take on the metadata of the old characters. For example, if the string "the bold font" has range (4, 8) replaced with "strong", then it becomes "the strong font".

Replaceable specifies ranges using a start offset and a limit offset. The range of characters thus specified includes the characters at offset start..limit-1. That is, the start offset is inclusive, and the limit offset is exclusive.

Replaceable also includes API to access characters in the string: length(), charAt(), char32At(), and extractBetween().

For a subclass to support metadata, typical behavior of replace() is the following:

If this is not the behavior, the subclass should document any differences.

Copyright © IBM Corporation 1999. All rights reserved.

Author
Alan Liu
ICU Status
Stable since ICU 2.0.

Method Summary

Modifier and TypeMethod and Description
public char

Returns:

16-bit code unit of text at given offset
charAt
(int
an integer between 0 and length()-1 inclusive
offset
)

Returns the 16-bit code unit at the given offset into the text.

public void
getChars(int
the beginning index to copy, inclusive; 0 <= start <= limit.
srcStart
,
int
the ending index to copy, exclusive; start <= limit <= length().
srcLimit
,
char[]
the destination array.
dst
,
int
the start offset in the destination array.
dstStart
)

Copies characters from this object into the destination character array.

public int

Returns:

number of 16-bit code units in text
length
()

Returns the number of 16-bit code units in the text.

Method Detail

charAtback to summary
public char charAt(int offset)

Returns the 16-bit code unit at the given offset into the text.

Parameters
offset:int

an integer between 0 and length()-1 inclusive

Returns:char

16-bit code unit of text at given offset

ICU Status
Stable since ICU 2.0.
getCharsback to summary
public void getChars(int srcStart, int srcLimit, char[] dst, int dstStart)

Copies characters from this object into the destination character array. The first character to be copied is at index srcStart; the last character to be copied is at index srcLimit-1 (thus the total number of characters to be copied is srcLimit-srcStart). The characters are copied into the subarray of dst starting at index dstStart and ending at index dstStart + (srcLimit-srcStart) - 1.

Parameters
srcStart:int

the beginning index to copy, inclusive; 0 <= start <= limit.

srcLimit:int

the ending index to copy, exclusive; start <= limit <= length().

dst:char[]

the destination array.

dstStart:int

the start offset in the destination array.

ICU Status
Stable since ICU 2.0.
lengthback to summary
public int length()

Returns the number of 16-bit code units in the text.

Returns:int

number of 16-bit code units in text

ICU Status
Stable since ICU 2.0.