Package com.mindee.product.resume
Class ResumeV1Education
- java.lang.Object
-
- com.mindee.parsing.standard.BaseField
-
- com.mindee.product.resume.ResumeV1Education
-
- All Implemented Interfaces:
LineItemField,PositionData
public class ResumeV1Education extends BaseField implements LineItemField
The list of the candidate's educational background.
-
-
Constructor Summary
Constructors Constructor Description ResumeV1Education()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDegreeDomain()The area of study or specialization.StringgetDegreeType()The type of degree obtained, such as Bachelor's, Master's, or Doctorate.StringgetEndMonth()The month when the education program or course was completed.StringgetEndYear()The year when the education program or course was completed.StringgetSchool()The name of the school.StringgetStartMonth()The month when the education program or course began.StringgetStartYear()The year when the education program or course 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
-
getDegreeDomain
public String getDegreeDomain()
The area of study or specialization.
-
getDegreeType
public String getDegreeType()
The type of degree obtained, such as Bachelor's, Master's, or Doctorate.
-
getEndMonth
public String getEndMonth()
The month when the education program or course was completed.
-
getEndYear
public String getEndYear()
The year when the education program or course was completed.
-
getSchool
public String getSchool()
The name of the school.
-
getStartMonth
public String getStartMonth()
The month when the education program or course began.
-
getStartYear
public String getStartYear()
The year when the education program or course began.
-
-