Uses of Enum
de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.external.Language
Package
Description
This package contains classes which support external knowledge sources that can be used for matching.
-
Uses of Language in de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.external
Modifier and TypeMethodDescriptionstatic Language
Language.inferLanguageChar2
(String language) Infer the correct enum instance given a char 2 language String.static Language
Returns the enum constant of this type with the specified name.static Language[]
Language.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Language in de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.external.dbpedia
Modifier and TypeMethodDescription(package private) static String
DBpediaLinker.getLinkerQueryString
(Set<String> concepts, Language language) SPARQL query to find links using a label and a language.(package private) static StringBuilder
DBpediaLinker.getPredicateQueryLine
(String predicate, String concept, Language language) Helper method to build a query.DBpediaLinker.linkLabelToTokensLeftToRight
(String labelToBeLinked, Language language) Splits the labelToBeLinked in ngrams up to infinite size and tries to link components.DBpediaLinker.linkToPotentiallyMultipleConcepts
(String labelToBeLinked, Language language) DBpediaLinker.linkToSingleConcept
(String labelToBeLinked, Language language) Link to a single concept. -
Uses of Language in de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.external.wikidata
Modifier and TypeMethodDescriptionprivate String
WikidataLinker.buildFragmentLabelAltLabel
(String label, Language language) WikidataKnowledgeSource.getHypernymsLexical
(String linkedConcept, Language language) Uses wdt:P31 (instance of) as well as wdt:P279 (subclass of).WikidataKnowledgeSource.getLabelsForLink
(String linkedConcept, Language language) Given a linked concept, retrieve all labels (rdfs:label, skos:altLabel).WikidataKnowledgeSource.getSynonyms
(String linkedConcept, Language language) Language-bound synonymy retrieval.boolean
WikidataKnowledgeSource.isInDictionary
(String word, Language language) Test whether the given word can be mapped (1-1) to a Wikidata concept (no smart mechanisms applied).private boolean
WikidataKnowledgeSource.isInDictionaryWithAltLabelAskQuery
(String word, Language language) Ask query with altLabel.private boolean
WikidataKnowledgeSource.isInDictionaryWithLabelAskQuery
(String word, Language language) Ask query with label.WikidataLinker.linkLabelToTokensLeftToRight
(String labelToBeLinked, Language language) Splits the labelToBeLinked in ngrams up to infinite size and tries to link components.WikidataLinker.linkToPotentiallyMultipleConcepts
(String labelToBeLinked, Language language) WikidataLinker.linkToSingleConcept
(String labelToBeLinked, Language language) Link to one concept.private String
WikidataLinker.linkToSingleConceptByRunningAllModifications
(String labelToBeLinked, Language language) Helper method: Will perform all string modifications and collect all concepts found thereby.private String
WikidataLinker.linkToSingleConceptGreedy
(String labelToBeLinked, Language language) Helper method.WikidataLinker.linkWithAltLabel
(String label, Language language) Link with alternative label.WikidataLinker.linkWithLabel
(String label, Language language) Given a label, a set of Wikidata concepts (= URIs as String) will be returned that carry that label.WikidataLinker.linkWithMultipleLabels
(Set<String> labels, Language language) This will check the labels as well as the alternative labels in one query. -
Uses of Language in de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.external.wiktionary
Modifier and TypeMethodDescriptionWiktionaryKnowledgeSource.getHypernyms
(String linkedConcept, Language language) Obtain hypernyms for the given concept.WiktionaryKnowledgeSource.getNormalizedTranslations
(String linkedConcept, Language sourceLanguage, Language targetLanguage) Looks for translations of the given string.WiktionaryKnowledgeSource.getSynonyms
(String word, Language language) Retrieves the synonyms of a particular word in a particular language.WiktionaryKnowledgeSource.getTranslation
(String linkedConcept, Language sourceLanguage, Language targetLanguage) Obtain the translations for the linked concept.WiktionaryKnowledgeSource.getTranslationOf
(String translationString, Language languageOfTranslation) Given a translation, find concepts which state that the given translation is their translation.boolean
WiktionaryKnowledgeSource.isInDictionary
(String word, Language language) Language dependent query for existence in the dbnary dictionary.boolean
WiktionaryKnowledgeSource.isTranslationDerived
(String word_1, Language language_1, String word_2, Language language_2) Checks whether the two words are translation of the same word (this mechanism uses another language as common denominator).boolean
WiktionaryKnowledgeSource.isTranslationLinked
(String linkedConceptToBeTranslated, Language language_1, String linkedConcept_2, Language language_2) Checks whether linkedConceptToBeTranslated can be translated to linkedConcept_2.boolean
WiktionaryKnowledgeSource.isTranslationNonLinked
(String linkedConceptToBeTranslated, Language language_1, String nonlinkedConcept_2, Language language_2) Checks whether linkedConceptToBeTranslated can be translated to non linked concept 2.WiktionaryLinker.linkToSingleConcept
(String labelToBeLinked, Language language) The language can be specified.