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 String
getDegreeDomain()
The area of study or specialization.String
getDegreeType()
The type of degree obtained, such as Bachelor's, Master's, or Doctorate.String
getEndMonth()
The month when the education program or course was completed.String
getEndYear()
The year when the education program or course was completed.String
getSchool()
The name of the school.String
getStartMonth()
The month when the education program or course began.String
getStartYear()
The year when the education program or course 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
-
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.
-
-