private JobStateProto convertToProtoFormat(JobState e) { return MRProtoUtils.convertToProtoFormat(e); }
private JobState convertFromProtoFormat(JobStateProto e) { return MRProtoUtils.convertFromProtoFormat(e); }
public static JobStateProto convertToProtoFormat(JobState e) { return JobStateProto.valueOf(JOB_STATE_PREFIX + e.name()); }
public static JobState convertFromProtoFormat(JobStateProto e) { return JobState.valueOf(e.name().replace(JOB_STATE_PREFIX, "")); }