public static enum ApplyTransformListener.ApplyResult extends java.lang.Enum<ApplyTransformListener.ApplyResult>
Enum Constant and Description |
---|
IGNORE
Run the transform on each document, but ignore
the value returned by the transform because the transform will do
any necessary database modifications or other processing.
|
REPLACE
(Default) Overwrites documents with the value
returned by the transform, just like REST write transforms.
|
Modifier and Type | Method and Description |
---|---|
static ApplyTransformListener.ApplyResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the
specified name.
|
static ApplyTransformListener.ApplyResult[] |
values()
Returns an array containing the constants of
this enum type, in the order they are declared.
|
public static final ApplyTransformListener.ApplyResult REPLACE
public static final ApplyTransformListener.ApplyResult IGNORE
public static ApplyTransformListener.ApplyResult[] values()
for (ApplyTransformListener.ApplyResult c : ApplyTransformListener.ApplyResult.values()) System.out.println(c);
public static ApplyTransformListener.ApplyResult valueOf(java.lang.String name)
name
- the name of the enum constant to be
returned.java.lang.IllegalArgumentException
- if this enum
type has no constant with the specified namejava.lang.NullPointerException
- if the argument
is nullCopyright © 2024 MarkLogic Corporation. All Rights Reserved.