to top
Android APIs
protected static class

Filter.FilterResults

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

Class Overview

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()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public int count

Added in API level 1

Contains the number of values computed by the filtering operation.

public Object values

Added in API level 1

Contains all the values computed by the filtering operation.

Public Constructors

public Filter.FilterResults ()

Added in API level 1