
com.textkernel.tx.models.resume.education.Degree Maven / Gradle / Ivy
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
package com.textkernel.tx.models.resume.education;
import com.textkernel.tx.models.api.parsing.ParseResumeResponseValue;
import com.textkernel.tx.models.resume.NormalizedString;
/**
* An educational degree
*/
public class Degree {
/** The name of the degree*/
public NormalizedString Name;
/**
* Deprecated - use {@link #NormalizedLocal} and {@link #NormalizedInternational} instead.
*
* These values are not very global-friendly, but the Parser does normalize all degrees
* to one of these pre-defined types. This list is sorted, as well as possible, by increasing
* level of education, although there are certainly ambiguities from one discipline to
* another, such as whether professional is above or below bachelors. Here are the possible values:
*
* - lessThanHighSchool
* - specialeducation
* - someHighSchoolOrEquivalent
* - ged
* - certification
* - vocational
* - secondary
* - highSchoolOrEquivalent
* - someCollege
* - HND_HNC_OrEquivalent
* - ASc
* - associates
* - international
* - professional
* - postprofessional
* - BSc
* - bachelors
* - somePostgraduate
* - MBA
* - MSc
* - masters
* - intermediategraduate
* - doctorate
* - postdoctorate
*
*/
@Deprecated
public String Type;
/** The normalized code/description of the degree based on the CV locale.
*
* NOTE: if you require this value, be sure to check the
* {@link ParseResumeResponseValue#EducationNormalizationResponse}
* on each response as some languages/locales are not supported
*
*/
public NormalizedDegree NormalizedLocal;
/** The normalized code/description of the degree based on an international standard.
*
* NOTE: if you require this value, be sure to check the
* {@link ParseResumeResponseValue#EducationNormalizationResponse}
* on each response as some languages/locales are not supported
*
*/
public NormalizedDegree NormalizedInternational;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy