1 package com.atlassian.pageobjects.elements.search;
2
3 import com.atlassian.annotations.PublicApi;
4
5 /**
6 * {@link SearchQuery} that can have any results.
7 *
8 * @see PageElementSearch
9 * @see SearchQuery
10 *
11 * @since 2.3
12 */
13 @PublicApi
14 public interface AnyQuery<E> extends SearchQuery<E, AnyQuery<E>>
15 {
16 }