com.textkernel.tx.models.api.dataenrichment.TaxonomyFormat 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.api.dataenrichment;
import com.textkernel.tx.models.dataenrichment.Taxonomy;
/**
* The format used to retrieve the DES skills or professions taxonomy
*/
public enum TaxonomyFormat {
/**
* Retrieves JSON, and all the response properties will be populated except the {@link Taxonomy#CsvOutput}
*/
json,
/**
* Retrieves CSV, and the only response property populated will be the {@link Taxonomy#CsvOutput}
*/
csv
}