public enum EntityTypes extends Enum<EntityTypes>
| Enum Constant and Description |
|---|
TEZ_APPLICATION_ATTEMPT |
TEZ_CONTAINER_ID |
TEZ_DAG_ID |
TEZ_TASK_ATTEMPT_ID |
TEZ_TASK_ID |
TEZ_VERTEX_ID |
| Modifier and Type | Method and Description |
|---|---|
static EntityTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityTypes TEZ_APPLICATION_ATTEMPT
public static final EntityTypes TEZ_CONTAINER_ID
public static final EntityTypes TEZ_DAG_ID
public static final EntityTypes TEZ_VERTEX_ID
public static final EntityTypes TEZ_TASK_ID
public static final EntityTypes TEZ_TASK_ATTEMPT_ID
public static EntityTypes[] values()
for (EntityTypes c : EntityTypes.values()) System.out.println(c);
public static EntityTypes 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 © 2014 Apache Software Foundation. All rights reserved.