public enum WatermarkStatus extends Enum<WatermarkStatus>
| Enum Constant and Description |
|---|
ON_HIGH
The item passed the watermark, and its watermark value is equal to the highest watermark value found.
|
ON_NEW_HIGH
The items passed the watermark, and its watermark value is higher than any item tested before.
|
PASSED
The item passed the watermark.
|
REJECT
The item was rejected because it did not passed the watermark, of was already processed with that watermark value.
|
| Modifier and Type | Method and Description |
|---|---|
static WatermarkStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WatermarkStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WatermarkStatus PASSED
public static final WatermarkStatus REJECT
public static final WatermarkStatus ON_HIGH
public static final WatermarkStatus ON_NEW_HIGH
public static WatermarkStatus[] values()
for (WatermarkStatus c : WatermarkStatus.values()) System.out.println(c);
public static WatermarkStatus 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 © 2003–2025 MuleSoft, Inc.. All rights reserved.