Example usage for com.amazonaws.services.elasticmapreduce.model JobFlowExecutionState fromValue

List of usage examples for com.amazonaws.services.elasticmapreduce.model JobFlowExecutionState fromValue

Introduction

In this page you can find the example usage for com.amazonaws.services.elasticmapreduce.model JobFlowExecutionState fromValue.

Prototype

public static JobFlowExecutionState fromValue(String value) 

Source Link

Document

Use this in place of valueOf.

Usage

From source file:com.clouddrive.parth.NewClass.java

public static boolean isDone(String value) {
    JobFlowExecutionState state = JobFlowExecutionState.fromValue(value);
    return DONE_STATES.contains(state);
}