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

nl.dedicon.pipeline.braille.model.Context Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package nl.dedicon.pipeline.braille.model;

/**
 *
 * @author Paul Rambags
 */
public enum Context {
    Default,
    Formula,
    Code;
    
    public static Context get(String context) {
        if ("Default".equalsIgnoreCase(context)) return Default;
        if ("Formula".equalsIgnoreCase(context)) return Formula;
        if ("Code".equalsIgnoreCase(context)) return Code;
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy