java.io.Serializable, java.lang.Comparable<CommitterEventType>public enum CommitterEventType extends java.lang.Enum<CommitterEventType>
| Enum Constant | Description |
|---|---|
JOB_ABORT |
|
JOB_COMMIT |
|
JOB_SETUP |
|
TASK_ABORT |
| Modifier and Type | Method | Description |
|---|---|---|
static CommitterEventType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static CommitterEventType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommitterEventType JOB_SETUP
public static final CommitterEventType JOB_COMMIT
public static final CommitterEventType JOB_ABORT
public static final CommitterEventType TASK_ABORT
public static CommitterEventType[] values()
for (CommitterEventType c : CommitterEventType.values()) System.out.println(c);
public static CommitterEventType 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 © 2008–2025 Apache Software Foundation. All rights reserved.