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

io.swagger.codegen.CodegenType Maven / Gradle / Ivy

There is a newer version: 3.0.0-rc1
Show newest version
package io.swagger.codegen;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

import java.util.HashMap;
import java.util.Map;

public enum CodegenType {
    CLIENT, SERVER, DOCUMENTATION, CONFIG, OTHER;

    private static Map names = new HashMap();

    @JsonCreator
    public static CodegenType forValue(String value) {
        return names.get(value.toLowerCase());
    }

    @JsonValue
    public String toValue() {
        for (Map.Entry entry : names.entrySet()) {
            if (entry.getValue() == this) {
                return entry.getKey();
            }
        }

        return null; // or fail
    }

    static {
        names.put("client", CLIENT);
        names.put("server", SERVER);
        names.put("documentation", DOCUMENTATION);
        names.put("config", CONFIG);
        names.put("other", OTHER);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy