Back to project page android-charmap.
The source code is released under:
MIT License
If you think the Android project android-charmap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kkinder.charmap; /* w w w. j a v a2s .com*/ /** * A pair of index (integer) and value (CharSequence) which the `toString()` returns the value. * This class is used in filtering of list adapter so the index is not missed. * * @author fikr4n * */ public class IndexEntry { public final int index; public final CharSequence value; public IndexEntry(int index, CharSequence value) { this.index = index; this.value = value; } @Override public String toString() { return value == null ? null : value.toString(); } }