1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte = exports.SchuleAbschnitte = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- const Vector_1 = require("../../../java/util/Vector");
- class SchuleAbschnitte extends JavaObject_1.JavaObject {
- anzahlAbschnitte = 0;
- abschnittBez = "Halbjahr";
- bezAbschnitte = new Vector_1.Vector();
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.schule.SchuleAbschnitte'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new SchuleAbschnitte();
- if (typeof obj.anzahlAbschnitte === "undefined")
- throw new Error('invalid json format, missing attribute anzahlAbschnitte');
- result.anzahlAbschnitte = obj.anzahlAbschnitte;
- if (typeof obj.abschnittBez === "undefined")
- throw new Error('invalid json format, missing attribute abschnittBez');
- result.abschnittBez = obj.abschnittBez;
- if (!!obj.bezAbschnitte) {
- for (let elem of obj.bezAbschnitte) {
- result.bezAbschnitte?.add(elem);
- }
- }
- return result;
- }
- static transpilerToJSON(obj) {
- let result = '{';
- result += '"anzahlAbschnitte" : ' + obj.anzahlAbschnitte + ',';
- result += '"abschnittBez" : ' + '"' + obj.abschnittBez.valueOf() + '"' + ',';
- if (!obj.bezAbschnitte) {
- result += '[]';
- }
- else {
- result += '[ ';
- for (let i = 0; i < obj.bezAbschnitte.size(); i++) {
- let elem = obj.bezAbschnitte.get(i);
- result += '"' + elem + '"';
- if (i < obj.bezAbschnitte.size() - 1)
- result += ',';
- }
- result += ' ]' + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- static transpilerToJSONPatch(obj) {
- let result = '{';
- if (typeof obj.anzahlAbschnitte !== "undefined") {
- result += '"anzahlAbschnitte" : ' + obj.anzahlAbschnitte + ',';
- }
- if (typeof obj.abschnittBez !== "undefined") {
- result += '"abschnittBez" : ' + '"' + obj.abschnittBez.valueOf() + '"' + ',';
- }
- if (typeof obj.bezAbschnitte !== "undefined") {
- if (!obj.bezAbschnitte) {
- result += '[]';
- }
- else {
- result += '[ ';
- for (let i = 0; i < obj.bezAbschnitte.size(); i++) {
- let elem = obj.bezAbschnitte.get(i);
- result += '"' + elem + '"';
- if (i < obj.bezAbschnitte.size() - 1)
- result += ',';
- }
- result += ' ]' + ',';
- }
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.SchuleAbschnitte = SchuleAbschnitte;
- function cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte = cast_de_nrw_schule_svws_core_data_schule_SchuleAbschnitte;
- //# sourceMappingURL=SchuleAbschnitte.js.map
|