Package | Description |
---|---|
com.marklogic.client.admin |
The package provides the classes for configuration and initialization
of the REST server.
|
com.marklogic.client.eval | |
com.marklogic.client.example.handle |
The package provides examples of extensions that read or write database documents
in a new way or with a new representation.
|
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.row |
The package provides classes for sending plan requests to and
processing row responses from the REST server.
|
com.marklogic.client.semantics |
Modifier and Type | Method and Description |
---|---|
void |
TransformExtensionsManager.writeJavascriptTransform(java.lang.String transformName,
TextWriteHandle sourceHandle)
Installs a transform implemented in Javascript.
|
void |
TransformExtensionsManager.writeJavascriptTransform(java.lang.String transformName,
TextWriteHandle sourceHandle,
ExtensionMetadata metadata)
Installs a transform implemented in Javascript.
|
void |
ResourceExtensionsManager.writeServices(java.lang.String resourceName,
TextWriteHandle sourceHandle,
ExtensionMetadata metadata,
ResourceExtensionsManager.MethodParameters... methodParams)
Installs the services that implement a resource.
|
void |
TransformExtensionsManager.writeXQueryTransform(java.lang.String transformName,
TextWriteHandle sourceHandle)
Installs a transform implemented in XQuery.
|
void |
TransformExtensionsManager.writeXQueryTransform(java.lang.String transformName,
TextWriteHandle sourceHandle,
ExtensionMetadata metadata)
Installs a transform implemented in XQuery.
|
Modifier and Type | Method and Description |
---|---|
ServerEvaluationCall |
ServerEvaluationCall.javascript(TextWriteHandle javascript)
Initialize this server-side eval call with javascript-syntax source code.
|
ServerEvaluationCall |
ServerEvaluationCall.xquery(TextWriteHandle xquery)
Initialize this server-side eval with xquery-syntax source code.
|
Modifier and Type | Class and Description |
---|---|
class |
URIHandle
A URI Handle sends read document content to a URI or
receives written database content from a URI.
|
Modifier and Type | Class and Description |
---|---|
class |
BytesHandle
A Bytes Handle represents document content as a byte array for reading or writing.
|
class |
FileHandle
A File Handle represents document content as a file for reading or writing.
|
class |
InputStreamHandle
An InputStreamHandle represents a resource as an InputStream for reading or writing.
|
class |
JacksonDatabindHandle<T>
An adapter for using the Jackson Open Source library for JSON; represents
JSON content for reading or writing as objects of the specified POJO class.
|
class |
OutputStreamHandle
An OutputStreamHandle generates output during writing.
|
class |
ReaderHandle
A Reader Handle represents a character content as a reader
for reading to or writing from the database.
|
class |
StringHandle
A String Handle represents document content as a string for reading or writing.
|
Modifier and Type | Method and Description |
---|---|
TextWriteHandle |
RawQueryDSLPlan.getHandle()
Returns the handle for the text of the JavaScript representation of the Query DSL.
|
TextWriteHandle |
RawSPARQLSelectPlan.getHandle()
Returns the handle for the text of the SPARQL query.
|
TextWriteHandle |
RawSQLPlan.getHandle()
Returns the handle for the text of the SQL query.
|
Modifier and Type | Method and Description |
---|---|
RawQueryDSLPlan |
RowManager.newRawQueryDSLPlan(TextWriteHandle handle)
Defines a plan from a Query DSL in a JavaScript serialization.
|
RawSPARQLSelectPlan |
RowManager.newRawSPARQLSelectPlan(TextWriteHandle handle)
Defines a plan from a SPARQL SELECT query.
|
RawSQLPlan |
RowManager.newRawSQLPlan(TextWriteHandle handle)
Defines a plan from an SQL query.
|
void |
RawQueryDSLPlan.setHandle(TextWriteHandle handle)
Specifies the handle for the text of the JavaScript representation of the Query DSL.
|
void |
RawSPARQLSelectPlan.setHandle(TextWriteHandle handle)
Specifies the handle for the text of the SPARQL query.
|
void |
RawSQLPlan.setHandle(TextWriteHandle handle)
Specifies the handle for the text of the SQL query.
|
RawQueryDSLPlan |
RawQueryDSLPlan.withHandle(TextWriteHandle handle)
Assigns the handle and returns the raw plan as a convenience.
|
RawSPARQLSelectPlan |
RawSPARQLSelectPlan.withHandle(TextWriteHandle handle)
Assigns the handle and returns the raw plan as a convenience.
|
RawSQLPlan |
RawSQLPlan.withHandle(TextWriteHandle handle)
Assigns the handle and returns the raw plan as a convenience.
|
Modifier and Type | Method and Description |
---|---|
SPARQLQueryDefinition |
SPARQLQueryManager.newQueryDefinition(TextWriteHandle sparql)
Instantiate a new SPARQLQueryDefinition with the SPARQL from
the provided TextWriteHandle.
|
void |
SPARQLQueryDefinition.setSparql(TextWriteHandle sparql)
Set the SPARQL query or update statement
|
SPARQLQueryDefinition |
SPARQLQueryDefinition.withSparql(TextWriteHandle sparql)
Set the SPARQL query or update statement
|
Copyright © 2013-2021 MarkLogic Corporation.