if (!use)
continue;
}
// if the target word/phrase does not satisfy the NER requirements
String nertag = token.ner();
if (constVars.allowedNERsforLabels != null && constVars.allowedNERsforLabels.containsKey(label)) {
if (!constVars.allowedNERsforLabels.get(label).contains(nertag)) {
continue;
}
}