FileDocCategorySizeDatePackage
GetChars.javaAPI DocAndroid 1.5 API1153Wed May 06 22:41:56 BST 2009android.text

GetChars

public interface GetChars implements CharSequence
Please implement this interface if your CharSequence has a getChars() method like the one in String that is faster than calling charAt() multiple times.

Fields Summary
Constructors Summary
Methods Summary
public voidgetChars(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.