Stay organized with collections
Save and categorize content based on your preferences.
GetChars
interface GetChars : CharSequence
Known Direct Subclasses
| AlteredCharSequence |
An AlteredCharSequence is a CharSequence that is largely mirrored from another CharSequence, except that a specified range of characters are mirrored from a different char array instead.
|
| Editable |
This is the interface for text whose content and markup can be changed (as opposed to immutable text like Strings).
|
| SpannableString |
This is the class for text whose content is immutable but to which markup objects can be attached and detached.
|
| SpannableStringBuilder |
This is the class for text whose content and markup can both be changed.
|
| SpannedString |
This is the class for text whose content and markup are immutable.
|
|
Known Indirect Subclasses
|
Please implement this interface if your CharSequence has a getChars() method like the one in String that is faster than calling charAt() multiple times.
Summary
| Public methods |
| abstract Unit |
Exactly like String.
|
Public methods
getChars
abstract fun getChars(
start: Int,
end: Int,
dest: CharArray,
destoff: Int
): Unit
Exactly like String.getChars(): copy chars start through end - 1 from this CharSequence into dest beginning at offset destoff.
| Parameters |
srcBegin |
start copying at this offset. |
srcEnd |
stop copying at this offset. |
dst |
the array to copy the data into. |
dstBegin |
offset into dst. |
| Exceptions |
java.lang.IndexOutOfBoundsException |
if any of the following is true:
srcBegin is negative
dstBegin is negative
- the
srcBegin argument is greater than the srcEnd argument.
srcEnd is greater than this.length().
dstBegin+srcEnd-srcBegin is greater than dst.length
|
java.lang.NullPointerException |
if dst is null |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2026-03-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-03-26 UTC."],[],[]]