All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.textkernel.tx.models.dataenrichment.ProfessionMultipleDescriptions Maven / Gradle / Ivy

The newest version!
package com.textkernel.tx.models.dataenrichment;
import java.util.List;

/**
 * A skill object.
 */
public class ProfessionMultipleDescriptions extends Profession {
    /**
     * A list of descriptions of the skill in all supported/requested languages.
     */
    public List Descriptions;

    /**
     * The description of the skill in the requested language.
NOTE: if multiple languages were requested, this is simply the first from {@link Descriptions} */ public ProfessionMultipleDescriptions(){ this.Description = (Descriptions != null && !Descriptions.isEmpty()) ? Descriptions.get(0).Description : null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy