Interface GetChars

All Superinterfaces:
CharSequence
All Known Subinterfaces:
Editable
All Known Implementing Classes:
SpannableString, SpannableStringBuilder, SpannedString

public interface GetChars extends CharSequence
Implement this interface if your CharSequence has a String.getChars(int, int, char[], int) method like the one in String that is faster than calling CharSequence.charAt(int) multiple times.
  • Method Details

    • getChars

      void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)