Uses of Class
p2pMapReduce.mapreduceModule.TaskType

Packages that use TaskType
p2pMapReduce.entity   
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
 

Uses of TaskType in p2pMapReduce.entity
 

Methods in p2pMapReduce.entity that return TaskType
 TaskType Task.getTaskType()
           
 

Uses of TaskType in p2pMapReduce.mapreduceModule
 

Methods in p2pMapReduce.mapreduceModule that return TaskType
 TaskType TaskAttemptID.getTaskType()
          Returns the TaskType of the TaskAttemptID
 TaskType TaskID.getTaskType()
          Get the type of the task
static TaskType TaskID.getTaskType(char c)
          Gets the TaskType corresponding to the character
static TaskType TaskType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TaskType[] TaskType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in p2pMapReduce.mapreduceModule with parameters of type TaskType
static char TaskID.getRepresentingCharacter(TaskType type)
          Gets the character representing the TaskType
 

Constructors in p2pMapReduce.mapreduceModule with parameters of type TaskType
TaskAttemptID(java.lang.String jtIdentifier, int jobId, TaskType type, int taskId, int id)
          Constructs a TaskId object from given parts.
TaskID(JobID jobId, TaskType type, int id)
          Constructs a TaskID object from given JobID.
TaskID(java.lang.String jtIdentifier, int jobId, TaskType type, int id)
          Constructs a TaskInProgressId object from given parts.