public static enum ApplyTransformListener.ApplyResult extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2013-2017 MarkLogic Corporation.