Map<String, Object> titleMetadata = new HashMap<String, Object>();
LumifyProperties.CONFIDENCE.setMetadata(titleMetadata, 0.1);
LumifyProperties.TITLE.addPropertyValue(entityVertexBuilder, ImportMR.MULTI_VALUE_KEY, lineData.getPageTitle(), titleMetadata, visibility);
if (lineData.getPropertyIri().equals("http://www.w3.org/1999/02/22-rdf-syntax-ns#type") && lineData.getValue() instanceof LinkValue) {
LinkValue linkValue = (LinkValue) lineData.getValue();
Integer ontologyDepth = getConceptDepth(linkValue.getValueString());
if (ontologyDepth != null) {
conceptTypeMetadata = new HashMap<String, Object>();
LumifyProperties.CONFIDENCE.setMetadata(conceptTypeMetadata, 0.2 + ((double) ontologyDepth / 1000.0));
String multiValueKey = ImportMR.MULTI_VALUE_KEY + "#" + linkValue.getValueString();
LumifyProperties.CONCEPT_TYPE.addPropertyValue(entityVertexBuilder, multiValueKey, linkValue.getValueString(), conceptTypeMetadata, visibility);
}
}
if (!(lineData.getValue() instanceof LinkValue)) {
String multiValueKey = lineData.getValue().getValueString();