Most visited

Recently visited

Added in API level 1

Filter.FilterResults

protected static class Filter.FilterResults
extends Object

java.lang.Object
   ↳ android.widget.Filter.FilterResults


Holds the results of a filtering operation. The results are the values computed by the filtering operation and the number of these values.

Summary

Fields

public int count

Contains the number of values computed by the filtering operation.

public Object values

Contains all the values computed by the filtering operation.

Public constructors

Filter.FilterResults()

Inherited methods

From class java.lang.Object

Fields

count

Added in API level 1
int count

Contains the number of values computed by the filtering operation.

values

Added in API level 1
Object values

Contains all the values computed by the filtering operation.

Public constructors

Filter.FilterResults

Added in API level 1
Filter.FilterResults ()

Hooray!