com.textkernel.tx.models.dataenrichment.Profession 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 normalized profession from the Professions Taxonomy
*/
public class Profession extends BasicProfession {
/**
* The group which this profession belongs to.
*/
public ProfessionClassification Group;
/**
/// The class which this profession belongs to.
*/
public ProfessionClassification Class;
/**
/// The O*NET 2010 (deprecated) details of this profession.
*/
public ProfessionClassification Onet;
/**
/// The ISCO-2008 details of this profession.
*/
public ProfessionClassification Isco;
/**
/// The O*NET 2019 details of this profession.
*/
public ProfessionClassification Onet2019;
/**
/// The KLDB-2020 details of this profession.
*/
public ProfessionClassification Kldb2020;
/**
/// The UWV-BOC details of this profession.
*/
public ProfessionClassification UwvBoc;
/**
/// The UK-SOC-2010 details of this profession.
*/
public ProfessionClassification UkSoc2010;
}