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