com.textkernel.tx.models.resume.skills.ResumeV2Skills 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.resume.skills;
import java.util.List;
import com.textkernel.tx.models.skills.ProfessionClass;
import com.textkernel.tx.models.api.parsing.SkillsSettings;
/** Skills output when version 2 of the taxonomy is utilized. */
public class ResumeV2Skills {
/** Array of skills exactly as found in the plain text of the document. */
public List Raw;
/** Normalized skills output when {@link SkillsSettings#TaxonomyVersion} is set to (or defaults to) {@code V2}
* and {@link SkillsSettings#Normalize} is set to {@code true} */
public List Normalized;
/** Professions most related to the document. Only output when {@link SkillsSettings#TaxonomyVersion} is set to (or defaults to) {@code V2}
* and {@link SkillsSettings#Normalize} is set to {@code true} */
public List RelatedProfessionClasses;
}