package it.unisannio.ding.ids.wedroid.wrapper.entity; import com.google.gson.annotations.SerializedName; public enum Color { @SerializedName("white") WHITE, @SerializedName("green") GREEN, @SerializedName("yellow") YELLOW, @SerializedName("orange") ORANGE, @SerializedName("red") RED, @SerializedName("purple") PURPLE, @SerializedName("blue") BLUE, @SerializedName("sky") SKY, @SerializedName("lime") LIME, @SerializedName("pink") PINK, @SerializedName("black") BLACK, @SerializedName("silver") SILVER, @SerializedName("peachpuff") PEACHPUFF, @SerializedName("crimson") CRIMSON, @SerializedName("plum") PLUM, @SerializedName("darkgreen") DARKGREEN, @SerializedName("slateblue") SLATEBLUE, @SerializedName("magenta") MAGENTA, @SerializedName("gold") GOLD, @SerializedName("navy") NAVY, @SerializedName("gray") GRAY, @SerializedName("saddlebrown") SADDLEBROWN, @SerializedName("paleturquoise") PALETURQUOISE, @SerializedName("mistyrose") MISTYROSE, @SerializedName("indigo") INDIGO }