blob: 4e085cb8e5078f20b2598a3b423b852ec85378bd [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.submodel.restapi.operation;
import org.eclipse.basyx.submodel.metamodel.enumhelper.StandardizedLiteralEnum;
import org.eclipse.basyx.submodel.metamodel.enumhelper.StandardizedLiteralEnumHelper;
/**
* ExecutionState for Operations
*
* @author espen
*
*/
public enum ExecutionState implements StandardizedLiteralEnum {
/**
* Initial state
*/
INITIATED("Initiated"),
/**
* State during execution
*/
RUNNING("Running"),
/**
* Operation has been completed
*/
COMPLETED("Completed"),
/**
* Operation has been canceled
*/
CANCELED("Canceled"),
/**
* Operation has failed
*/
FAILED("Failed"),
/**
* Operation has timed out
*/
TIMEOUT("Timeout");
private String standardizedLiteral;
private ExecutionState(String standardizedLiteral) {
this.standardizedLiteral = standardizedLiteral;
}
@Override
public String getStandardizedLiteral() {
return standardizedLiteral;
}
@Override
public String toString() {
return standardizedLiteral;
}
public static ExecutionState fromString(String str) {
return StandardizedLiteralEnumHelper.fromLiteral(ExecutionState.class, str);
}
}