-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from ehrbase/feature/84_fix_enum_generation
Feature/84 fix enum generation
- Loading branch information
Showing
203 changed files
with
9,267 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
.../classgenerator/examples/coronaanamnesecomposition/definition/VorhandenDefiningcode2.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package org.ehrbase.client.classgenerator.examples.coronaanamnesecomposition.definition; | ||
|
||
import org.ehrbase.client.classgenerator.EnumValueSet; | ||
|
||
public enum VorhandenDefiningcode2 implements EnumValueSet { | ||
NICHT_VORHANDEN("Nicht vorhanden", "Das spezifische Symptom oder Anzeichen ist nicht vorhanden.", "local", "at0024"), | ||
|
||
VORHANDEN("Vorhanden", "Das spezifische Symptom oder Anzeichen ist vorhanden.", "local", "at0023"), | ||
|
||
UNBEKANNT("Unbekannt", "Es ist nicht bekannt, ob das Symptom oder Anzeichen vorhanden ist oder nicht.", "local", "at0027"); | ||
|
||
private String value; | ||
|
||
private String description; | ||
|
||
private String terminologyId; | ||
|
||
private String code; | ||
|
||
VorhandenDefiningcode2(String value, String description, String terminologyId, String code) { | ||
this.value = value; | ||
this.description = description; | ||
this.terminologyId = terminologyId; | ||
this.code = code; | ||
} | ||
|
||
public String getValue() { | ||
return this.value; | ||
} | ||
|
||
public String getDescription() { | ||
return this.description; | ||
} | ||
|
||
public String getTerminologyId() { | ||
return this.terminologyId; | ||
} | ||
|
||
public String getCode() { | ||
return this.code; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...les/coronaanamnesecomposition/definition/VorhandenseinDefiningcodeSpecificExposureEn.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package org.ehrbase.client.classgenerator.examples.coronaanamnesecomposition.definition; | ||
|
||
import org.ehrbase.client.classgenerator.EnumValueSet; | ||
|
||
public enum VorhandenseinDefiningcodeSpecificExposureEn implements EnumValueSet { | ||
NICHT_VORHANDEN("Nicht vorhanden", "*The specific exposure is or has been absent at or during the event.(en)", "local", "at0049"), | ||
|
||
VORHANDEN("Vorhanden", "*The specific exposure is or has been present at or during the event.(en)", "local", "at0047"); | ||
|
||
private String value; | ||
|
||
private String description; | ||
|
||
private String terminologyId; | ||
|
||
private String code; | ||
|
||
VorhandenseinDefiningcodeSpecificExposureEn(String value, String description, | ||
String terminologyId, String code) { | ||
this.value = value; | ||
this.description = description; | ||
this.terminologyId = terminologyId; | ||
this.code = code; | ||
} | ||
|
||
public String getValue() { | ||
return this.value; | ||
} | ||
|
||
public String getDescription() { | ||
return this.description; | ||
} | ||
|
||
public String getTerminologyId() { | ||
return this.terminologyId; | ||
} | ||
|
||
public String getCode() { | ||
return this.code; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.