public static interface DocumentMetadataPatchBuilder.CallBuilder
Modifier and Type | Method and Description |
---|---|
DocumentMetadataPatchBuilder.Call |
add(java.lang.Number number)
Calls the built-in method to add to an existing
value.
|
DocumentMetadataPatchBuilder.Call |
applyLibrary(java.lang.String function)
Calls a function with no arguments other than
the existing fragment.
|
DocumentMetadataPatchBuilder.Call |
applyLibraryFragments(java.lang.String function,
java.lang.Object... args)
Calls a function with the existing fragment and
one or more specified fragments.
|
DocumentMetadataPatchBuilder.Call |
applyLibraryValues(java.lang.String function,
java.lang.Object... args)
Calls a function with the existing fragment and
one or more values.
|
DocumentMetadataPatchBuilder.Call |
concatenateAfter(java.lang.String prefix)
Calls the built-in method to append an existing
string to the supplied string.
|
DocumentMetadataPatchBuilder.Call |
concatenateBefore(java.lang.String suffix)
Calls the built-in method to concatenate an
existing string before the supplied string.
|
DocumentMetadataPatchBuilder.Call |
concatenateBetween(java.lang.String prefix,
java.lang.String suffix)
Calls the built-in method to concatenate an
existing string between the supplied strings.
|
DocumentMetadataPatchBuilder.Call |
divideBy(java.lang.Number number)
Calls the built-in method to divide an existing
value by the supplied number.
|
DocumentMetadataPatchBuilder.Call |
multiply(java.lang.Number number)
Calls the built-in method to multiply an
existing value.
|
DocumentMetadataPatchBuilder.Call |
replaceRegex(java.lang.String pattern,
java.lang.String replacement)
Calls the built-in method to modify an existing
string with a regular expression
|
DocumentMetadataPatchBuilder.Call |
replaceRegex(java.lang.String pattern,
java.lang.String replacement,
java.lang.String flags)
Calls the built-in method to modify an existing
string with a regular expression
|
DocumentMetadataPatchBuilder.Call |
substringAfter(java.lang.String prefix)
Calls the built-in method to reduce an existing
string to a trailing substring.
|
DocumentMetadataPatchBuilder.Call |
substringBefore(java.lang.String suffix)
Calls the built-in method to reduce an existing
string to a leading substring.
|
DocumentMetadataPatchBuilder.Call |
subtract(java.lang.Number number)
Calls the built-in method to subtract from an
existing value.
|
DocumentMetadataPatchBuilder.Call add(java.lang.Number number)
number
- the added numberDocumentMetadataPatchBuilder.Call subtract(java.lang.Number number)
number
- the subtracted numberDocumentMetadataPatchBuilder.Call multiply(java.lang.Number number)
number
- the multiplierDocumentMetadataPatchBuilder.Call divideBy(java.lang.Number number)
number
- the divisorDocumentMetadataPatchBuilder.Call concatenateAfter(java.lang.String prefix)
prefix
- the string that appears firstDocumentMetadataPatchBuilder.Call concatenateBetween(java.lang.String prefix, java.lang.String suffix)
prefix
- the string that appears firstsuffix
- the string that appears lastDocumentMetadataPatchBuilder.Call concatenateBefore(java.lang.String suffix)
suffix
- the string that appears lastDocumentMetadataPatchBuilder.Call substringAfter(java.lang.String prefix)
prefix
- the initial part of the stringDocumentMetadataPatchBuilder.Call substringBefore(java.lang.String suffix)
suffix
- the final part of the stringDocumentMetadataPatchBuilder.Call replaceRegex(java.lang.String pattern, java.lang.String replacement)
pattern
- the matching regular expressionreplacement
- the replacement for the matchDocumentMetadataPatchBuilder.Call replaceRegex(java.lang.String pattern, java.lang.String replacement, java.lang.String flags)
pattern
- the matching regular expressionreplacement
- the replacement for the matchflags
- the regex flagsDocumentMetadataPatchBuilder.Call applyLibrary(java.lang.String function)
function
- the name of the functionDocumentMetadataPatchBuilder.Call applyLibraryValues(java.lang.String function, java.lang.Object... args)
function
- the name of the functionargs
- the literal valuesDocumentMetadataPatchBuilder.Call applyLibraryFragments(java.lang.String function, java.lang.Object... args)
function
- the name of the functionargs
- the fragmentsCopyright © 2024 MarkLogic Corporation. All Rights Reserved.