# Print output for @column tags ?>
public
interface
GetChars
implements
CharSequence
android.text.GetChars |
Please implement this interface if your CharSequence has a getChars() method like the one in String that is faster than calling charAt() multiple times.
Public methods | |
---|---|
abstract
void
|
getChars(int start, int end, char[] dest, int destoff)
Exactly like String.getChars(): copy chars |
Inherited methods | |
---|---|
public 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
.
Parameters | |
---|---|
start |
int |
end |
int |
dest |
char |
destoff |
int |