package de.hftstuttgart.utils; import com.fasterxml.jackson.annotation.JsonProperty; public enum BuildState { @JsonProperty("blue") BLUE, @JsonProperty("notbuilt") NOTBUILT, @JsonProperty("notbuilt_anime") NOTBUILT_ANMIE, @JsonProperty("red") RED, @JsonProperty("yellow") YELLOW, @JsonProperty("grey") GREY, @JsonProperty("disabled") DISABLED, @JsonProperty("aborted") ABORTED, @JsonProperty("aborted_anime") ABORTED_ANIME, @JsonProperty("grey_anime") GREY_ANIME }