com.textkernel.tx.models.dataenrichment.SkillMatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tx-java Show documentation
Show all versions of tx-java Show documentation
The official Java SDK for the Textkernel Tx v10 API.
The newest version!
package com.textkernel.tx.models.dataenrichment;
/** A matched skill that was found in the text provided. */
public class SkillMatch {
/** The index of the first character of the match (0-based). */
public int BeginSpan;
/** The index of the last character of the match (0-based). */
public int EndSpan;
/** Likelihood that the matched term actually refers to a skill in the context of the text. */
public float Likelihood;
/** The actual term that was found as evidence of this skill (the substring from BeginSpan to EndSpan). */
public String RawText;
}