QueryType
[Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.]
public final class QueryType extends Enum
Enumerates query types.
public static QueryType values ()
TBDpublic static QueryType valueOf (String name)
TBDpublic static final QueryType SIMPLE
A standard query that supports filtering and sorting.public static final QueryType INDEXED
A query that supports paging using an index and a page size in addition to the standard filtering and sorting.public static final QueryType COUNT
A query that returns the count of results according to an optional filter.public static final QueryType SEEK
A query that is a continuation of a previous one. Used to retrieve more records of the same query relative to the last made query by seeking to pages.
Methods
values
public static QueryType values ()
TBD
Returns values
QueryType
valueOf
public static QueryType valueOf (String name)
TBD
name
StringTBD
Returns values
QueryType
Fields
SIMPLE
public static final QueryType SIMPLE
A standard query that supports filtering and sorting.
Remarks -
Enumerates query types. A standard query that supports filtering and sorting.
INDEXED
public static final QueryType INDEXED
A query that supports paging using an index and a page size in addition to the standard filtering and sorting.
Remarks -
A query that supports paging using an index and a page size in addition to the standard filtering and sorting.
COUNT
public static final QueryType COUNT
A query that returns the count of results according to an optional filter.
Remarks -
A query that returns the count of results according to an optional filter.
SEEK
public static final QueryType SEEK
A query that is a continuation of a previous one. Used to retrieve more records of the same query relative to the last made query by seeking to pages.
Remarks -
A query that is a continuation of a previous one. Used to retrieve more records of the same query relative to the last made query by seeking to pages.
Info
Applies To:
JDK: 8
Product Version: Beta 1