wesbillman
companion object Companion { @JsonCreator @JvmStatic fun fromValue(node: JsonNode): TestEnum? { return values().filter { node.asInt() == it.value }.firstOrNull() } }