ExecutionType.java
package org.imageconverter.domain.conversion;
import static org.apache.commons.lang3.StringUtils.upperCase;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* Conversion execution's type.
*
* @author Fernando Romulo da Silva
*/
@Schema(enumAsRef = true)
public enum ExecutionType {
UNKNOWN,
BATCH,
WS,
MS,
WEB,
DESKTOP;
/**
* Convert string to objects
*
* @param string The string to
* @return A object {@link ExecutionType} enum
*/
public static ExecutionType from(final String string) {
final var stringTypeNew = upperCase(string);
return switch (stringTypeNew) { //
case "BATCH" -> BATCH;
case "WS" -> WS; // Web Service
case "MS" -> MS; // Messaging Service
case "WEB" -> WEB; // Spring MVC
case "DESKTOP" -> DESKTOP; //
default -> UNKNOWN;
};
}
}