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