Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public interface

GetChars

implements CharSequence
android.text.GetChars
Known Indirect Subclasses

Class Overview

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 void getChars (int start, int end, char[] dest, int destoff)
Exactly like String.getChars(): copy chars start through end - 1 from this CharSequence into dest beginning at offset destoff .
[Expand]
Inherited Methods
From interface java.lang.CharSequence

Public Methods

public abstract void getChars (int start, int end, char[] dest, int destoff)

Added in API level 1

Exactly like String.getChars(): copy chars start through end - 1 from this CharSequence into dest beginning at offset destoff .