All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.model.ServiceStatus Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.capitalone.dashboard.model;

/**
 * Denotes the status of a product or service
 */
public enum ServiceStatus {
    Ok, Warning, Alert;

    public static ServiceStatus fromString(String value) {
        for(ServiceStatus status : ServiceStatus.values()) {
            if (status.toString().equalsIgnoreCase(value)) {
                return status;
            }
        }
        throw new IllegalArgumentException(value + " is not a valid ServiceStatus.");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy