Package | Description |
---|---|
com.marklogic.client.document |
The package provides classes for creating, retrieving, updating, and deleting
documents in the database for the REST server.
|
com.marklogic.client.impl | |
com.marklogic.client.io |
The package provides the handle classes with different representations for document content
when you read documents from the database or write documents to the database.
|
com.marklogic.client.pojo |
The goal of this package (sometimes referred to as "the pojo facade" is to simplify working
with custom Plain Old Java Objects (pojos) without hassling with persistence details.
|
com.marklogic.client.query |
The package provides classes for queries including searching documents
and reading values directly from indexes in the database for the REST server.
|
com.marklogic.client.semantics |
Modifier and Type | Method and Description |
---|---|
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start)
Just like
QueryManager.search
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
SearchReadHandle searchHandle)
Just like
QueryManager.search
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
SearchReadHandle searchHandle,
java.lang.String forestName)
Just like
QueryManager.search
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
SearchReadHandle searchHandle,
Transaction transaction)
Just like
QueryManager.search(SearchQueryDefinition, SearchReadHandle, long, Transaction)
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
SearchReadHandle searchHandle,
Transaction transaction,
java.lang.String forestName)
Just like
QueryManager.search(SearchQueryDefinition, SearchReadHandle, long, Transaction, String)
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
java.lang.String forestName)
Just like
QueryManager.search
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
Transaction transaction)
Just like
QueryManager.search
but return complete documents via iterable DocumentPage. |
DocumentPage |
DocumentManager.search(SearchQueryDefinition querydef,
long start,
Transaction transaction,
java.lang.String forestName)
Just like
QueryManager.search
but return complete documents via iterable DocumentPage. |
Modifier and Type | Class and Description |
---|---|
class |
com.marklogic.client.impl.AbstractQueryDefinition |
class |
com.marklogic.client.impl.AbstractSearchQueryDefinition |
Modifier and Type | Method and Description |
---|---|
SearchQueryDefinition |
SearchHandle.getQueryCriteria()
Returns the query definition used for the search represented by this handle.
|
Modifier and Type | Method and Description |
---|---|
void |
SearchHandle.setQueryCriteria(SearchQueryDefinition querydef)
Sets the query definition used in the search.
|
Modifier and Type | Interface and Description |
---|---|
interface |
PojoQueryDefinition
A marker interface identifying QueryDefinition types compatible with
PojoRepository.search |
Modifier and Type | Interface and Description |
---|---|
interface |
CtsQueryDefinition
A CtsQueryDefinition represents all kinds of cts queries that can be performed.
|
interface |
DeleteQueryDefinition
A DeleteQueryDefinition is a query definition suitable for use in performing a delete query.
|
interface |
QueryDefinition
A QueryDefinition represents the common parts of most kinds of searches(except Cts query) that can be performed.
|
interface |
RawCombinedQueryDefinition
A RawCombinedQueryDefinition provides access to a combined query
in a JSON or XML representation.
|
interface |
RawCtsQueryDefinition
A RawCtsQueryDefinition allows you to create a query with a serialized cts
query in a JSON or XML representation.
|
interface |
RawQueryByExampleDefinition
A RawQueryByExampleDefinition provides access to a simple
query by example in an JSON or XML representation.
|
interface |
RawQueryDefinition
A RawQueryDefinition provides access to a query
in a JSON or XML representation.
|
interface |
RawStructuredQueryDefinition
A RawStructuredQueryDefinition provides access to a structured query
in a JSON or XML representation.
|
interface |
StringQueryDefinition
A StringQueryDefinition represents the criteria associated with a simple string query.
|
static interface |
StructuredQueryBuilder.Box |
static interface |
StructuredQueryBuilder.Circle |
static interface |
StructuredQueryBuilder.Point |
static interface |
StructuredQueryBuilder.Polygon |
static interface |
StructuredQueryBuilder.Region
A region matched by a geospatial query.
|
interface |
StructuredQueryDefinition
A StructuredQueryDefinition represents a structured query.
|
interface |
ValueQueryDefinition
ValueQueryDefinitions can be used in value queries.
|
Modifier and Type | Method and Description |
---|---|
SearchQueryDefinition |
SearchResults.getQueryCriteria()
Returns the search query definition associated with this query.
|
Modifier and Type | Method and Description |
---|---|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle)
Searches documents based on query criteria and, potentially, previously
saved query options.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
long start)
Searches documents based on query criteria and, potentially, previously
saved query options starting with the specified page listing
document results.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
long start,
java.lang.String forestName)
Searches documents based on query criteria and, potentially, previously
saved query options starting with the specified page listing
document results.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
long start,
Transaction transaction)
Searches documents based on query criteria and, potentially, previously
saved query options starting with the specified page listing
document results.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
long start,
Transaction transaction,
java.lang.String forestName)
Searches documents based on query criteria and, potentially, previously
saved query options starting with the specified page listing
document results.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
java.lang.String forestName)
Searches documents based on query criteria and, potentially, previously
saved query options.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
Transaction transaction)
Searches documents based on query criteria and, potentially, previously
saved query options.
|
<T extends SearchReadHandle> |
QueryManager.search(SearchQueryDefinition querydef,
T searchHandle,
Transaction transaction,
java.lang.String forestName)
Searches documents based on query criteria and, potentially, previously
saved query options.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SPARQLQueryDefinition
Represents a SPARQL query.
|
Copyright © 2013-2021 MarkLogic Corporation.