List of usage examples for com.amazonaws.services.elasticmapreduce.model JobFlowExecutionState fromValue
public static JobFlowExecutionState fromValue(String value)
From source file:com.clouddrive.parth.NewClass.java
public static boolean isDone(String value) { JobFlowExecutionState state = JobFlowExecutionState.fromValue(value); return DONE_STATES.contains(state); }