java.io.Serializable, java.lang.Comparable<TaskAttemptCompletionEventStatus>public enum TaskAttemptCompletionEventStatus extends java.lang.Enum<TaskAttemptCompletionEventStatus>
| Enum Constant | Description |
|---|---|
FAILED |
|
KILLED |
|
OBSOLETE |
|
SUCCEEDED |
|
TIPFAILED |
| Modifier and Type | Method | Description |
|---|---|---|
static TaskAttemptCompletionEventStatus |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TaskAttemptCompletionEventStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskAttemptCompletionEventStatus FAILED
public static final TaskAttemptCompletionEventStatus KILLED
public static final TaskAttemptCompletionEventStatus SUCCEEDED
public static final TaskAttemptCompletionEventStatus OBSOLETE
public static final TaskAttemptCompletionEventStatus TIPFAILED
public static TaskAttemptCompletionEventStatus[] values()
for (TaskAttemptCompletionEventStatus c : TaskAttemptCompletionEventStatus.values()) System.out.println(c);
public static TaskAttemptCompletionEventStatus 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.