use of org.openrefine.wikidata.schema.entityvalues.FullyPropertySerializingValueSnak in project OpenRefine by OpenRefine.
the class WbSnakExpr method evaluate.
@Override
public Snak evaluate(ExpressionContext ctxt) throws SkipSchemaExpressionException {
PropertyIdValue propertyId = getProp().evaluate(ctxt);
Value evaluatedValue = value.evaluate(ctxt);
return new FullyPropertySerializingValueSnak(propertyId, evaluatedValue);
}
Aggregations