a_vcard.android.text
Interface GetChars
- All Superinterfaces:
- java.lang.CharSequence
- All Known Subinterfaces:
- Editable
- All Known Implementing Classes:
- SpannableStringBuilder
public interface GetChars
- extends java.lang.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.
Method Summary |
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 . |
Methods inherited from interface java.lang.CharSequence |
charAt, length, subSequence, toString |
getChars
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
.