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

com.textkernel.tx.models.resume.contactinfo.ContactInformation 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.contactinfo;

import java.util.List;
import com.textkernel.tx.models.Location;

/**
* A candidate's contact information listed on a resume
*/
public class ContactInformation {

    /** The candidate's name*/
    public PersonName CandidateName;

    /** The candidate's phone numbers. If multiple numbers are found, mobile phone numbers will be listed first*/
    public List Telephones;

    /** The candidate's email addresses*/
    public List EmailAddresses;

    /** 
     * The candidate's location/address. The Parser does not standardize addresses. Address standardization
     * services are available, including for example the Google Maps API, that can take the Parser's contact
     * info fields and standardize/geocode the data.
    */
    public Location Location;

    /** The candidate's web addresses (URLs, social media) listed on the resume*/
    public List WebAddresses;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy