| Package | Description |
|---|---|
| com.marklogic.client.expression |
The package provides classes for building Optic plan pipelines and expressions for execution on the REST server.
|
| com.marklogic.client.type |
The package provides interfaces specifying the type of an expression or value as passed to a
PlanBuilder method or returned from a RowRecord method. |
| Modifier and Type | Method and Description |
|---|---|
ItemSeqExpr |
JsonExpr.arrayValues(JsonArrayExpr array)
Returns the array values as an XQuery sequence.
|
ItemSeqExpr |
JsonExpr.arrayValues(JsonArrayExpr array,
boolean flatten)
Returns the array values as an XQuery sequence.
|
ItemSeqExpr |
JsonExpr.arrayValues(JsonArrayExpr array,
XsBooleanExpr flatten)
Returns the array values as an XQuery sequence.
|
abstract ItemSeqExpr |
PlanBuilder.caseExpr(PlanCase... cases)
This function returns the specified
valueExpression if the specified valueExpression is true. |
ItemSeqExpr |
SemExpr.coalesce(ItemExpr... parameter1)
Returns the value of the first argument that evaluates without error.
|
ItemSeqExpr |
MathExpr.frexp(XsDoubleExpr x)
Returns x broken up into mantissa and exponent, where x = mantissa*2^exponent.
|
ItemSeqExpr |
XdmpExpr.fromJson(NodeExpr arg)
Atomizes a JSON node, returning a JSON value.
|
ItemSeqExpr |
MapExpr.get(MapMapExpr map,
String key)
Get a value from a map.
|
ItemSeqExpr |
MapExpr.get(MapMapExpr map,
XsStringExpr key)
Get a value from a map.
|
ItemSeqExpr |
SemExpr.ifExpr(XsBooleanExpr condition,
ItemSeqExpr then,
ItemSeqExpr elseExpr)
The IF function form evaluates the first argument, interprets it as a effective boolean value, then returns the value of expression2 if the EBV is true, otherwise it returns the value of expression3.
|
ItemSeqExpr |
FnExpr.insertBefore(ItemSeqExpr target,
long position,
ItemSeqExpr inserts)
Returns a new sequence constructed from the value of target with the value of inserts inserted at the position specified by the value of position.
|
ItemSeqExpr |
FnExpr.insertBefore(ItemSeqExpr target,
XsIntegerExpr position,
ItemSeqExpr inserts)
Returns a new sequence constructed from the value of target with the value of inserts inserted at the position specified by the value of position.
|
ItemSeqExpr |
XdmpExpr.nodePermissions(NodeExpr node)
Returns the permissions to a node’s document.
|
ItemSeqExpr |
XdmpExpr.nodePermissions(NodeExpr node,
String outputKind)
Returns the permissions to a node’s document.
|
ItemSeqExpr |
XdmpExpr.nodePermissions(NodeExpr node,
XsStringExpr outputKind)
Returns the permissions to a node’s document.
|
ItemSeqExpr |
FnExpr.remove(ItemSeqExpr target,
long position)
Returns a new sequence constructed from the value of target with the item at the position specified by the value of position removed.
|
ItemSeqExpr |
FnExpr.remove(ItemSeqExpr target,
XsIntegerExpr position)
Returns a new sequence constructed from the value of target with the item at the position specified by the value of position removed.
|
ItemSeqExpr |
FnExpr.reverse(ItemSeqExpr target)
Reverses the order of items in a sequence.
|
ItemSeqExpr |
SqlExpr.sign(XsNumericExpr x)
Returns the sign of number x.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
double startingLoc)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
double startingLoc,
double length)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
XsNumericExpr startingLoc)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
XsNumericExpr startingLoc,
XsNumericExpr length)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.tail(ItemSeqExpr seq)
Returns all but the first item in a sequence.
|
ItemSeqExpr |
FnExpr.unordered(ItemSeqExpr sourceSeq)
Returns the items of sourceSeq in an implementation dependent order.
|
| Modifier and Type | Method and Description |
|---|---|
abstract PlanExprCol |
PlanBuilder.as(PlanColumn column,
ItemSeqExpr expression)
This function defines a column by assigning the value of an expression over the rows in the row set.
|
abstract PlanExprCol |
PlanBuilder.as(String column,
ItemSeqExpr expression)
This function defines a column by assigning the value of an expression over the rows in the row set.
|
XsBooleanExpr |
FnExpr.booleanExpr(ItemSeqExpr arg)
Computes the effective boolean value of the sequence arg.
|
XsIntegerExpr |
FnExpr.count(ItemSeqExpr arg)
Returns the number of items in the value of arg.
|
XsIntegerExpr |
FnExpr.count(ItemSeqExpr arg,
double maximum)
Returns the number of items in the value of arg.
|
XsIntegerExpr |
FnExpr.count(ItemSeqExpr arg,
XsDoubleExpr maximum)
Returns the number of items in the value of arg.
|
XsBooleanExpr |
FnExpr.deepEqual(ItemSeqExpr parameter1,
ItemSeqExpr parameter2)
This function assesses whether two sequences are deep-equal to each other.
|
XsBooleanExpr |
FnExpr.deepEqual(ItemSeqExpr parameter1,
ItemSeqExpr parameter2,
String collation)
This function assesses whether two sequences are deep-equal to each other.
|
XsBooleanExpr |
FnExpr.deepEqual(ItemSeqExpr parameter1,
ItemSeqExpr parameter2,
XsStringExpr collation)
This function assesses whether two sequences are deep-equal to each other.
|
XsStringExpr |
XdmpExpr.describe(ItemSeqExpr item)
Returns a string representing the description of a given item sequence.
|
XsStringExpr |
XdmpExpr.describe(ItemSeqExpr item,
XsUnsignedIntExpr maxSequenceLength)
Returns a string representing the description of a given item sequence.
|
XsStringExpr |
XdmpExpr.describe(ItemSeqExpr item,
XsUnsignedIntExpr maxSequenceLength,
XsUnsignedIntExpr maxItemLength)
Returns a string representing the description of a given item sequence.
|
XsBooleanExpr |
FnExpr.empty(ItemSeqExpr arg)
If the value of arg is the empty sequence, the function returns true; otherwise, the function returns false.
|
MapMapExpr |
MapExpr.entry(XsStringExpr key,
ItemSeqExpr value)
Constructs a new map with a single entry consisting of the key and value specified as arguments.
|
XsBooleanExpr |
FnExpr.exists(ItemSeqExpr arg)
If the value of arg is not the empty sequence, the function returns true; otherwise, the function returns false.
|
ItemExpr |
FnExpr.head(ItemSeqExpr seq)
Returns the first item in a sequence.
|
ItemSeqExpr |
SemExpr.ifExpr(XsBooleanExpr condition,
ItemSeqExpr then,
ItemSeqExpr elseExpr)
The IF function form evaluates the first argument, interprets it as a effective boolean value, then returns the value of expression2 if the EBV is true, otherwise it returns the value of expression3.
|
ItemSeqExpr |
FnExpr.insertBefore(ItemSeqExpr target,
long position,
ItemSeqExpr inserts)
Returns a new sequence constructed from the value of target with the value of inserts inserted at the position specified by the value of position.
|
ItemSeqExpr |
FnExpr.insertBefore(ItemSeqExpr target,
XsIntegerExpr position,
ItemSeqExpr inserts)
Returns a new sequence constructed from the value of target with the value of inserts inserted at the position specified by the value of position.
|
XsStringExpr |
SqlExpr.left(ItemSeqExpr str,
double n)
Returns a string that is the leftmost characters of the target string.
|
XsStringExpr |
SqlExpr.left(ItemSeqExpr str,
XsNumericExpr n)
Returns a string that is the leftmost characters of the target string.
|
XsBooleanExpr |
FnExpr.not(ItemSeqExpr arg)
Returns
true if the effective boolean value is false, and false if the effective boolean value is true. |
ItemSeqExpr |
FnExpr.remove(ItemSeqExpr target,
long position)
Returns a new sequence constructed from the value of target with the item at the position specified by the value of position removed.
|
ItemSeqExpr |
FnExpr.remove(ItemSeqExpr target,
XsIntegerExpr position)
Returns a new sequence constructed from the value of target with the item at the position specified by the value of position removed.
|
XsStringExpr |
SqlExpr.repeat(ItemSeqExpr str,
double n)
Returns a string that concatenates the first argument as many times as specified by the second argument.
|
XsStringExpr |
SqlExpr.repeat(ItemSeqExpr str,
XsNumericExpr n)
Returns a string that concatenates the first argument as many times as specified by the second argument.
|
ItemSeqExpr |
FnExpr.reverse(ItemSeqExpr target)
Reverses the order of items in a sequence.
|
XsStringExpr |
SqlExpr.right(ItemSeqExpr str,
double n)
Returns a string that is the rightmost characters of the target string.
|
XsStringExpr |
SqlExpr.right(ItemSeqExpr str,
XsNumericExpr n)
Returns a string that is the rightmost characters of the target string.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
double startingLoc)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
double startingLoc,
double length)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
XsNumericExpr startingLoc)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.subsequence(ItemSeqExpr sourceSeq,
XsNumericExpr startingLoc,
XsNumericExpr length)
Returns the contiguous sequence of items in the value of sourceSeq beginning at the position indicated by the value of startingLoc and continuing for the number of items indicated by the value of length.
|
ItemSeqExpr |
FnExpr.tail(ItemSeqExpr seq)
Returns all but the first item in a sequence.
|
JsonArrayExpr |
JsonExpr.toArray(ItemSeqExpr items)
Constructs an array from a sequence of items.
|
JsonArrayExpr |
JsonExpr.toArray(ItemSeqExpr items,
double limit)
Constructs an array from a sequence of items.
|
JsonArrayExpr |
JsonExpr.toArray(ItemSeqExpr items,
double limit,
ItemExpr zero)
Constructs an array from a sequence of items.
|
JsonArrayExpr |
JsonExpr.toArray(ItemSeqExpr items,
XsNumericExpr limit)
Constructs an array from a sequence of items.
|
JsonArrayExpr |
JsonExpr.toArray(ItemSeqExpr items,
XsNumericExpr limit,
ItemExpr zero)
Constructs an array from a sequence of items.
|
NodeExpr |
XdmpExpr.toJson(ItemSeqExpr item)
Constructs a JSON document.
|
ItemSeqExpr |
FnExpr.unordered(ItemSeqExpr sourceSeq)
Returns the items of sourceSeq in an implementation dependent order.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ArrayNodeExpr
An instance of a JSON array node expression.
|
interface |
ArrayNodeSeqExpr
A sequence of JSON array node expressions.
|
interface |
AttributeNodeExpr
An instance of an XML attribute node expression.
|
interface |
AttributeNodeSeqExpr
A sequence of XML attribute node expressions.
|
interface |
BooleanNodeExpr
An instance of a JSON boolean node expression.
|
interface |
BooleanNodeSeqExpr
A sequence of JSON boolean node expressions.
|
interface |
CommentNodeExpr
An instance of an XML comment node expression.
|
interface |
CommentNodeSeqExpr
A sequence of XML comment node expressions.
|
interface |
CtsBoxExpr
An instance of a cts.box expression.
|
interface |
CtsBoxSeqExpr
A sequence of cts.box expressions.
|
interface |
CtsCircleExpr
An instance of a cts.circle expression.
|
interface |
CtsCircleSeqExpr
A sequence of cts.circle expressions.
|
interface |
CtsPeriodExpr
An instance of a cts.period expression.
|
interface |
CtsPeriodSeqExpr
A sequence of cts.period expressions.
|
interface |
CtsPointExpr
An instance of a cts.point expression.
|
interface |
CtsPointSeqExpr
A sequence of cts.point expressions.
|
interface |
CtsPolygonExpr
An instance of a cts.polygon expression.
|
interface |
CtsPolygonSeqExpr
A sequence of cts.polygon expressions.
|
interface |
CtsQueryExpr
An instance of a cts.query expression.
|
interface |
CtsQuerySeqExpr
A sequence of cts.query expressions.
|
interface |
CtsReferenceExpr
An instance of a cts.reference expression.
|
interface |
CtsReferenceSeqExpr
A sequence of cts.reference expressions.
|
interface |
CtsRegionExpr
An instance of a cts.region expression.
|
interface |
CtsRegionSeqExpr
A sequence of cts.region expressions.
|
interface |
DocumentNodeExpr
An instance of a JSON or XML document node expression.
|
interface |
DocumentNodeSeqExpr
A sequence of JSON or XML document node expressions.
|
interface |
ElementNodeExpr
An instance of an XML element node expression.
|
interface |
ElementNodeSeqExpr
A sequence of XML element node expressions.
|
interface |
ItemExpr
An instance of a server expression.
|
interface |
ItemSeqVal
One or more server values.
|
interface |
ItemVal
An instance of a server value.
|
interface |
JsonArrayExpr
An instance of a JSON array expression.
|
interface |
JsonArraySeqExpr
A sequence of JSON array expressions.
|
interface |
JsonContentNodeExpr
An instance of a JSON boolean, null, number, or text node expression.
|
interface |
JsonContentNodeSeqExpr
A sequence of JSON boolean, null, number, or text node expressions.
|
interface |
JsonObjectExpr
An instance of a JSON object expression.
|
interface |
JsonObjectSeqExpr
A sequence of JSON object expressions.
|
interface |
JsonRootNodeExpr
An instance of a JSON array or object node expression.
|
interface |
JsonRootNodeSeqExpr
A sequence of JSON array or object node expressions.
|
interface |
MapMapExpr
An instance of a map expression.
|
interface |
MapMapSeqExpr
A sequence of map expressions.
|
interface |
MathLinearModelExpr
An instance of a math.linearModel expression.
|
interface |
MathLinearModelSeqExpr
A sequence of math.linearModel expressions.
|
interface |
NodeExpr
An instance of a node expression.
|
interface |
NodeSeqExpr
A sequence of node expressions.
|
interface |
NullNodeExpr
An instance of a JSON null node expression.
|
interface |
NullNodeSeqExpr
A sequence of JSON null node expressions.
|
interface |
NumberNodeExpr
An instance of a JSON number node expression.
|
interface |
NumberNodeSeqExpr
A sequence of JSON number node expressions.
|
interface |
ObjectNodeExpr
An instance of a JSON object node expression.
|
interface |
ObjectNodeSeqExpr
A sequence of JSON object node expressions.
|
interface |
PlanColumn
An instance of a column expression returned by a col() call in a row pipeline.
|
interface |
PlanParamExpr
An instance of a placeholder parameter returned by a call to the param() function that can represent a literal value in expressions and can be passed on a bind() call to be assigned a literal value when invoking a row pipeline.
|
interface |
PlanSystemColumn
An instance of a fragment id, graph id, or other system column for a row pipeline.
|
interface |
ProcessingInstructionNodeExpr
An instance of an XML processing instruction node expression.
|
interface |
ProcessingInstructionNodeSeqExpr
A sequence of XML processing instruction node expressions.
|
interface |
RdfLangStringExpr
An instance of an RDF language string expression.
|
interface |
RdfLangStringSeqExpr
A sequence of RDF language string expressions.
|
interface |
RdfLangStringSeqVal
An instance of an RDF language string value.
|
interface |
RdfLangStringVal
A sequence of RDF language string values.
|
interface |
SemBlankExpr
An instance of a semantic bnode (blank node) expression.
|
interface |
SemBlankSeqExpr
A sequence of semantic bnode (blank node) expressions.
|
interface |
SemInvalidExpr
An instance of an semantic invalid expression.
|
interface |
SemInvalidSeqExpr
A sequence of semantic invalid expressions.
|
interface |
SemIriExpr
An instance of a semantic IRI expression.
|
interface |
SemIriSeqExpr
A sequence of semantic IRI expressions.
|
interface |
SemIriSeqVal
A sequence of semantic IRI values.
|
interface |
SemIriVal
An instance of a semantic IRI value.
|
interface |
SemUnknownExpr
An instance of a semantic unknown expression.
|
interface |
SemUnknownSeqExpr
A sequence of semantic unknown expressions.
|
interface |
TextNodeExpr
An instance of a JSON or XML text node expression.
|
interface |
TextNodeSeqExpr
A sequence of JSON or XML text node expressions.
|
interface |
XmlContentNodeExpr
An instance of an XML comment, element, processing-instruction, or text node expression.
|
interface |
XmlContentNodeSeqExpr
A sequence of XML comment, element, processing-instruction, or text node expressions.
|
interface |
XmlRootNodeExpr
An instance of an XML comment, element, or processing-instruction node expression.
|
interface |
XmlRootNodeSeqExpr
A sequence of XML comment, element, or processing-instruction node expressions.
|
interface |
XsAnyAtomicTypeExpr
An instance of a server atomic expression.
|
interface |
XsAnyAtomicTypeSeqExpr
A sequence of server atomic expressions.
|
interface |
XsAnyAtomicTypeSeqVal
A sequence of server atomic values.
|
interface |
XsAnyAtomicTypeVal
An instance of a server atomic value.
|
interface |
XsAnySimpleTypeExpr
An instance of a server simple expression.
|
interface |
XsAnySimpleTypeSeqExpr
A sequence of server simple expressions.
|
interface |
XsAnySimpleTypeSeqVal
A sequence of server simple values.
|
interface |
XsAnySimpleTypeVal
An instance of a server simple value.
|
interface |
XsAnyURIExpr
An instance of a server URI expression.
|
interface |
XsAnyURISeqExpr
A sequence of server URI expressions.
|
interface |
XsAnyURISeqVal
A sequence of server URI values.
|
interface |
XsAnyURIVal
An instance of a server URI value.
|
interface |
XsBase64BinaryExpr
An instance of a server base 64 binary expression.
|
interface |
XsBase64BinarySeqExpr
A sequence of server base 64 binary expressions.
|
interface |
XsBase64BinarySeqVal
A sequence of server base 64 binary values.
|
interface |
XsBase64BinaryVal
An instance of a server base 64 binary value.
|
interface |
XsBooleanExpr
An instance of a server boolean expression.
|
interface |
XsBooleanSeqExpr
A sequence of server boolean expressions.
|
interface |
XsBooleanSeqVal
A sequence of server boolean values.
|
interface |
XsBooleanVal
An instance of a server boolean value.
|
interface |
XsByteExpr
An instance of a server byte expression.
|
interface |
XsByteSeqExpr
A sequence of server byte expressions.
|
interface |
XsByteSeqVal
A sequence of server byte values.
|
interface |
XsByteVal
An instance of a server byte value.
|
interface |
XsDateExpr
An instance of a server date expression.
|
interface |
XsDateSeqExpr
A sequence of server date expressions.
|
interface |
XsDateSeqVal
A sequence of server date values.
|
interface |
XsDateTimeExpr
An instance of a server datetime expression.
|
interface |
XsDateTimeSeqExpr
A sequence of server datetime expressions.
|
interface |
XsDateTimeSeqVal
A sequence of server datetime values.
|
interface |
XsDateTimeVal
An instance of a server datetime value.
|
interface |
XsDateVal
An instance of a server date value.
|
interface |
XsDayTimeDurationExpr
An instance of a server day-time duration expression.
|
interface |
XsDayTimeDurationSeqExpr
A sequence of server day-time duration expressions.
|
interface |
XsDayTimeDurationSeqVal
A sequence of server day-time duration values.
|
interface |
XsDayTimeDurationVal
An instance of a server day-time duration value.
|
interface |
XsDecimalExpr
An instance of a server decimal expression.
|
interface |
XsDecimalSeqExpr
A sequence of server decimal expressions.
|
interface |
XsDecimalSeqVal
A sequence of server decimal values.
|
interface |
XsDecimalVal
An instance of a server decimal value.
|
interface |
XsDoubleExpr
An instance of a server double expression.
|
interface |
XsDoubleSeqExpr
A sequence of server double expressions.
|
interface |
XsDoubleSeqVal
A sequence of server double values.
|
interface |
XsDoubleVal
An instance of a server double value.
|
interface |
XsDurationExpr
An instance of a server duration expression.
|
interface |
XsDurationSeqExpr
A sequence of server duration expressions.
|
interface |
XsDurationSeqVal
A sequence of server duration values.
|
interface |
XsDurationVal
An instance of a server duration value.
|
interface |
XsFloatExpr
An instance of a server float expression.
|
interface |
XsFloatSeqExpr
A sequence of server float expressions.
|
interface |
XsFloatSeqVal
A sequence of server float values.
|
interface |
XsFloatVal
An instance of a server float value.
|
interface |
XsGDayExpr
An instance of a server GDay expression.
|
interface |
XsGDaySeqExpr
A sequence of server GDay expressions.
|
interface |
XsGDaySeqVal
A sequence of server GDay values.
|
interface |
XsGDayVal
An instance of a server GDay value.
|
interface |
XsGMonthDayExpr
An instance of a server GMonthDay expression.
|
interface |
XsGMonthDaySeqExpr
A sequence of server GMonthDay expressions.
|
interface |
XsGMonthDaySeqVal
A sequence of server GMonthDay values.
|
interface |
XsGMonthDayVal
An instance of a server GMonthDay value.
|
interface |
XsGMonthExpr
An instance of a server GMonth expression.
|
interface |
XsGMonthSeqExpr
A sequence of server GMonth expressions.
|
interface |
XsGMonthSeqVal
A sequence of server GMonth values.
|
interface |
XsGMonthVal
An instance of a server GMonth value.
|
interface |
XsGYearExpr
An instance of a server GYear expression.
|
interface |
XsGYearMonthExpr
An instance of a server GYearMonth expression.
|
interface |
XsGYearMonthSeqExpr
A sequence of server GYearMonth expressions.
|
interface |
XsGYearMonthSeqVal
A sequence of server GYearMonth values.
|
interface |
XsGYearMonthVal
An instance of a server GYearMonth value.
|
interface |
XsGYearSeqExpr
A sequence of server GYear expressions.
|
interface |
XsGYearSeqVal
A sequence of server GYear values.
|
interface |
XsGYearVal
An instance of a server GYear value.
|
interface |
XsHexBinaryExpr
An instance of a server hex binary expression.
|
interface |
XsHexBinarySeqExpr
A sequence of server hex binary expressions.
|
interface |
XsHexBinarySeqVal
A sequence of server hex binary values.
|
interface |
XsHexBinaryVal
An instance of a server hex binary value.
|
interface |
XsIntegerExpr
An instance of a server integer expression.
|
interface |
XsIntegerSeqExpr
A sequence of server integer expressions.
|
interface |
XsIntegerSeqVal
A sequence of server integer values.
|
interface |
XsIntegerVal
An instance of a server integer value.
|
interface |
XsIntExpr
An instance of a server int expression.
|
interface |
XsIntSeqExpr
A sequence of server int expressions.
|
interface |
XsIntSeqVal
A sequence of server int values.
|
interface |
XsIntVal
An instance of a server int value.
|
interface |
XsLanguageExpr
An instance of a server language expression.
|
interface |
XsLanguageSeqExpr
A sequence of server language expressions.
|
interface |
XsLongExpr
An instance of a server long expression.
|
interface |
XsLongSeqExpr
A sequence of server long expressions.
|
interface |
XsLongSeqVal
A sequence of server long values.
|
interface |
XsLongVal
An instance of a server long value.
|
interface |
XsNameExpr
An instance of a server name expression.
|
interface |
XsNameSeqExpr
A sequence of server name expressions.
|
interface |
XsNCNameExpr
An instance of a server NCName expression.
|
interface |
XsNCNameSeqExpr
A sequence of server NCName expressions.
|
interface |
XsNegativeIntegerExpr
An instance of a server negative integer expression.
|
interface |
XsNegativeIntegerSeqExpr
A sequence of server negative integer expressions.
|
interface |
XsNMTOKENExpr
An instance of a server name token expression.
|
interface |
XsNMTOKENSeqExpr
A sequence of server name token expressions.
|
interface |
XsNonNegativeIntegerExpr
An instance of a server non-negative integer expression.
|
interface |
XsNonNegativeIntegerSeqExpr
A sequence of server non-negative integer expressions.
|
interface |
XsNonNegativeIntegerSeqVal
A sequence of non-negative integer values.
|
interface |
XsNonNegativeIntegerVal
An instance of a server non-negative integer value.
|
interface |
XsNonPositiveIntegerExpr
An instance of a server non-positive integer expression.
|
interface |
XsNonPositiveIntegerSeqExpr
A sequence of server non-positive integer expressions.
|
interface |
XsNormalizedStringExpr
An instance of a server normalized string expression.
|
interface |
XsNormalizedStringSeqExpr
A sequence of server normalized string expressions.
|
interface |
XsNumericExpr
An instance of a server numeric expression.
|
interface |
XsNumericSeqExpr
A sequence of server numeric expressions.
|
interface |
XsNumericSeqVal
A sequence of server numeric values.
|
interface |
XsNumericVal
An instance of a server numeric value.
|
interface |
XsPositiveIntegerExpr
An instance of a server positive integer expression.
|
interface |
XsPositiveIntegerSeqExpr
A sequence of server positive integer expressions.
|
interface |
XsQNameExpr
An instance of a server qualified name expression.
|
interface |
XsQNameSeqExpr
A sequence of server qualified name expressions.
|
interface |
XsQNameSeqVal
A sequence of server qualified name values.
|
interface |
XsQNameVal
An instance of a server qualified name value.
|
interface |
XsShortExpr
An instance of a server short expression.
|
interface |
XsShortSeqExpr
A sequence of server short expressions.
|
interface |
XsShortSeqVal
A sequence of server short values.
|
interface |
XsShortVal
An instance of a server short value.
|
interface |
XsStringExpr
An instance of a server string expression.
|
interface |
XsStringSeqExpr
A sequence of server string expressions.
|
interface |
XsStringSeqVal
A sequence of server string values.
|
interface |
XsStringVal
An instance of a server string value.
|
interface |
XsTimeExpr
An instance of a server time expression.
|
interface |
XsTimeSeqExpr
A sequence of server time expressions.
|
interface |
XsTimeSeqVal
A sequence of server time values.
|
interface |
XsTimeVal
An instance of a server time value.
|
interface |
XsTokenExpr
An instance of a server token expression.
|
interface |
XsTokenSeqExpr
A sequence of server token expressions.
|
interface |
XsUnsignedByteExpr
An instance of a server unsigned byte expression.
|
interface |
XsUnsignedByteSeqExpr
A sequence of server unsigned byte expressions.
|
interface |
XsUnsignedByteSeqVal
A sequence of server unsigned byte values.
|
interface |
XsUnsignedByteVal
An instance of a server unsigned byte value.
|
interface |
XsUnsignedIntExpr
An instance of a server unsigned int expression.
|
interface |
XsUnsignedIntSeqExpr
A sequence of server unsigned int expressions.
|
interface |
XsUnsignedIntSeqVal
A sequence of server unsigned int values.
|
interface |
XsUnsignedIntVal
An instance of a server unsigned int value.
|
interface |
XsUnsignedLongExpr
An instance of a server unsigned long expression.
|
interface |
XsUnsignedLongSeqExpr
A sequence of server unsigned long expressions.
|
interface |
XsUnsignedLongSeqVal
A sequence of server unsigned long values.
|
interface |
XsUnsignedLongVal
An instance of a server unsigned long value.
|
interface |
XsUnsignedShortExpr
An instance of a server unsigned short expression.
|
interface |
XsUnsignedShortSeqExpr
A sequence of server unsigned short expressions.
|
interface |
XsUnsignedShortSeqVal
A sequence of server unsigned short values.
|
interface |
XsUnsignedShortVal
An instance of a server unsigned short value.
|
interface |
XsUntypedAtomicExpr
An instance of a server untyped atomic expression.
|
interface |
XsUntypedAtomicSeqExpr
A sequence of server untyped atomic expressions.
|
interface |
XsUntypedAtomicSeqVal
A sequence of server untyped atomic values.
|
interface |
XsUntypedAtomicVal
An instance of a server untyped atomic value.
|
interface |
XsYearMonthDurationExpr
An instance of a server year-month duration expression.
|
interface |
XsYearMonthDurationSeqExpr
A sequence of server year-month duration expressions.
|
interface |
XsYearMonthDurationSeqVal
A sequence of server year-month duration values.
|
interface |
XsYearMonthDurationVal
An instance of a server year-month duration value.
|
Copyright © 2013-2017 MarkLogic Corporation.