android.widget.Filter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.widget;
public abstract class Filter
{
protected static class FilterResults
{
public FilterResults() { throw new RuntimeException("Stub!"); }
public java.lang.Object values;
public int count;
}
public static interface FilterListener
{
public abstract void onFilterComplete(int count);
}
public Filter() { throw new RuntimeException("Stub!"); }
public final void filter(java.lang.CharSequence constraint) { throw new RuntimeException("Stub!"); }
public final void filter(java.lang.CharSequence constraint, android.widget.Filter.FilterListener listener) { throw new RuntimeException("Stub!"); }
protected abstract android.widget.Filter.FilterResults performFiltering(java.lang.CharSequence constraint);
protected abstract void publishResults(java.lang.CharSequence constraint, android.widget.Filter.FilterResults results);
public java.lang.CharSequence convertResultToString(java.lang.Object resultValue) { throw new RuntimeException("Stub!"); }
}