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

com.capitalone.dashboard.editors.CaseInsensitiveServiceStatusEditor Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.editors;

import com.capitalone.dashboard.model.ServiceStatus;

import java.beans.PropertyEditorSupport;

/**
 * Property editor that translates text into a BuildStatus in a case insensitive manner.
 */
public class CaseInsensitiveServiceStatusEditor extends PropertyEditorSupport {
    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        setValue(ServiceStatus.fromString(text));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy