Download this file

EducationLevel.java    15 lines (12 with data), 249 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
package eu.alfred.personalization_manager.model;
public enum EducationLevel {
// International Standard Classification of Education - ISCED 2011
PRIMARY,
LO_SECONDARY,
UP_SECONDARY,
POST_SECONDARY,
TERTIARY,
BACHELOR,
MASTER,
DOCTORAL,
}