public enum TaskAttemptCompletionEventStatus extends Enum<TaskAttemptCompletionEventStatus>
| Enum Constant and Description | 
|---|
| FAILED | 
| KILLED | 
| OBSOLETE | 
| SUCCEEDED | 
| TIPFAILED | 
| Modifier and Type | Method and Description | 
|---|---|
| static TaskAttemptCompletionEventStatus | valueOf(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(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 © 2008–2023 Apache Software Foundation. All rights reserved.