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