ArrayNode arrayNode = (ArrayNode) enumNode;
List<String> vs = new ArrayList<String>();
for(JsonNode n : arrayNode) {
vs.add(n.asText());
}
values = new JAllowableListValues();
((JAllowableListValues)values).setValues(vs);
((JAllowableListValues)values).setValueType("LIST");
}