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

com.textkernel.tx.models.resume.metadata.ResumeQualityLevel Maven / Gradle / Ivy

The newest version!
// 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.metadata;

/** The level/severity of a {@link ResumeQualityAssessment}*/
public class ResumeQualityLevel {

    /** Only minor issues were found*/
    public static ResumeQualityLevel SuggestedImprovement = new ResumeQualityLevel("Suggested Improvements");

    /** Some data was missing that should be included in a resume*/
    public static ResumeQualityLevel DataMissing = new ResumeQualityLevel("Data Missing");

    /** A major issue was found in the resume that will reduce the quality of parse results*/
    public static ResumeQualityLevel MajorIssue = new ResumeQualityLevel("Major Issues Found");

    /** A fatal issue was found in the resume. Parse results may have severe inaccuracies*/
    public static ResumeQualityLevel FatalProblem = new ResumeQualityLevel("Fatal Problems Found");

    /** The string value for this level/severity */
    public String Value;

    private ResumeQualityLevel(String value) {
        Value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy