}
return scala.collection.immutable.List.fromIterator(JavaConversions.asScalaIterator(list.iterator()));
}
public static JAllowableValues getAllowableValuesFromJsonNode(JsonNode node) {
JAllowableValues values = null;
if(node.get("minimum") != null ) {
String min = node.get("minimum").asText();
String max = min;
if (node.get("maximum") != null) {