12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_gost_GostJahrgang = exports.GostJahrgang = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- class GostJahrgang extends JavaObject_1.JavaObject {
- abiturjahr = null;
- jahrgang = null;
- bezeichnung = null;
- istAbgeschlossen = false;
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.gost.GostJahrgang'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new GostJahrgang();
- result.abiturjahr = typeof obj.abiturjahr === "undefined" ? null : obj.abiturjahr;
- result.jahrgang = typeof obj.jahrgang === "undefined" ? null : obj.jahrgang;
- result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
- if (typeof obj.istAbgeschlossen === "undefined")
- throw new Error('invalid json format, missing attribute istAbgeschlossen');
- result.istAbgeschlossen = obj.istAbgeschlossen;
- return result;
- }
- static transpilerToJSON(obj) {
- let result = '{';
- result += '"abiturjahr" : ' + ((!obj.abiturjahr) ? 'null' : obj.abiturjahr.valueOf()) + ',';
- result += '"jahrgang" : ' + ((!obj.jahrgang) ? 'null' : '"' + obj.jahrgang.valueOf() + '"') + ',';
- result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
- result += '"istAbgeschlossen" : ' + obj.istAbgeschlossen + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- static transpilerToJSONPatch(obj) {
- let result = '{';
- if (typeof obj.abiturjahr !== "undefined") {
- result += '"abiturjahr" : ' + ((!obj.abiturjahr) ? 'null' : obj.abiturjahr.valueOf()) + ',';
- }
- if (typeof obj.jahrgang !== "undefined") {
- result += '"jahrgang" : ' + ((!obj.jahrgang) ? 'null' : '"' + obj.jahrgang.valueOf() + '"') + ',';
- }
- if (typeof obj.bezeichnung !== "undefined") {
- result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
- }
- if (typeof obj.istAbgeschlossen !== "undefined") {
- result += '"istAbgeschlossen" : ' + obj.istAbgeschlossen + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.GostJahrgang = GostJahrgang;
- function cast_de_nrw_schule_svws_core_data_gost_GostJahrgang(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_gost_GostJahrgang = cast_de_nrw_schule_svws_core_data_gost_GostJahrgang;
- //# sourceMappingURL=GostJahrgang.js.map
|