use of org.openforis.collect.datacleansing.json.JSONValueParser in project collect by openforis.
the class DataQueryResultItem method extractAttributeValue.
public Value extractAttributeValue() {
AttributeDefinition def = getAttributeDefinition();
Value val = new JSONValueParser().parseValue(def, value);
return val;
}
Aggregations