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 String
getContractType()
The type of contract for the professional experience.String
getDepartment()
The specific department or division within the company.String
getDescription()
The description of the professional experience as written in the document.String
getEmployer()
The name of the company or organization.String
getEndMonth()
The month when the professional experience ended.String
getEndYear()
The year when the professional experience ended.String
getRole()
The position or job title held by the candidate.String
getStartMonth()
The month when the professional experience began.String
getStartYear()
The year when the professional experience began.boolean
isEmpty()
String
toString()
String
toTableLine()
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:
toTableLine
in 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.
-
-