public static enum AppenderListener.Conflation extends java.lang.Enum<AppenderListener.Conflation>
| Enum Constant and Description |
|---|
EVICTED
Conflation occurred and the existing old value present in the queue was evicted and replaced by the newly
enqueued value.
|
MERGED
Conflation occurred and the existing old element present in the queue was merged with the newly enqueued
element via a
Merger; the result of the merge operation is the value in the queue now. |
UNCONFLATED
No conflation occurred, that is, no other value with the same conflation key exists in the queue at the
time of enqueueing the value.
|
| Modifier and Type | Method and Description |
|---|---|
static AppenderListener.Conflation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppenderListener.Conflation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppenderListener.Conflation UNCONFLATED
public static final AppenderListener.Conflation EVICTED
public static final AppenderListener.Conflation MERGED
Merger; the result of the merge operation is the value in the queue now.public static AppenderListener.Conflation[] values()
for (AppenderListener.Conflation c : AppenderListener.Conflation.values()) System.out.println(c);
public static AppenderListener.Conflation 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 null