Package com.mindee.product.resume
Class ResumeV1ProfessionalExperience
- java.lang.Object
-
- com.mindee.parsing.standard.BaseField
-
- com.mindee.product.resume.ResumeV1ProfessionalExperience
-
- All Implemented Interfaces:
LineItemField,PositionData
public class ResumeV1ProfessionalExperience extends BaseField implements LineItemField
The list of the candidate's professional experiences.
-
-
Constructor Summary
Constructors Constructor Description ResumeV1ProfessionalExperience()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContractType()The type of contract for the professional experience.StringgetDepartment()The specific department or division within the company.StringgetDescription()The description of the professional experience as written in the document.StringgetEmployer()The name of the company or organization.StringgetEndMonth()The month when the professional experience ended.StringgetEndYear()The year when the professional experience ended.StringgetRole()The position or job title held by the candidate.StringgetStartMonth()The month when the professional experience began.StringgetStartYear()The year when the professional experience began.booleanisEmpty()StringtoString()StringtoTableLine()Output the line in a format suitable for inclusion in an rST table.-
Methods inherited from class com.mindee.parsing.standard.BaseField
canEqual, equals, getBoundingBox, getConfidence, getPageId, getPolygon, hashCode
-
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
toTableLine
public String toTableLine()
Output the line in a format suitable for inclusion in an rST table.- Specified by:
toTableLinein interfaceLineItemField
-
getContractType
public String getContractType()
The type of contract for the professional experience.
-
getDepartment
public String getDepartment()
The specific department or division within the company.
-
getDescription
public String getDescription()
The description of the professional experience as written in the document.
-
getEmployer
public String getEmployer()
The name of the company or organization.
-
getEndMonth
public String getEndMonth()
The month when the professional experience ended.
-
getEndYear
public String getEndYear()
The year when the professional experience ended.
-
getRole
public String getRole()
The position or job title held by the candidate.
-
getStartMonth
public String getStartMonth()
The month when the professional experience began.
-
getStartYear
public String getStartYear()
The year when the professional experience began.
-
-