1 package eu.ehri.project.definitions;
2
3 public enum Isaar implements DefinitionList {
4
5 lastName,
6 firstName,
7 source,
8 typeOfEntity,
9 otherFormsOfName(true),
10 parallelFormsOfName(true),
11 datesOfExistence,
12 biographicalHistory,
13 place(true),
14 functions(true),
15 mandates(true),
16 legalStatus,
17 structure,
18 generalContext,
19 scripts(true),
20 sources(true),
21 occupation;
22
23 private final Boolean multiValued;
24
25
26 Isaar() {
27 this(false);
28 }
29
30 Isaar(Boolean multiValued) {
31 this.multiValued = multiValued;
32 }
33
34 public Boolean isMultiValued() {
35 return multiValued;
36 }
37 }