SingleInputSemanticProperties semanticProperties = new SingleInputSemanticProperties();
// extract constantSet from annotation
if (constantSet != null) {
for (int value: constantSet.value()) {
semanticProperties.addForwardedField(value,value);
}
}
return semanticProperties;
}