1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.cast_de_nrw_schule_svws_core_data_gost_GostSchuelerFachwahl = exports.GostSchuelerFachwahl = void 0;
- const JavaObject_1 = require("../../../java/lang/JavaObject");
- class GostSchuelerFachwahl extends JavaObject_1.JavaObject {
- EF1 = null;
- EF2 = null;
- Q11 = null;
- Q12 = null;
- Q21 = null;
- Q22 = null;
- abiturFach = null;
- constructor() {
- super();
- }
- isTranspiledInstanceOf(name) {
- return ['de.nrw.schule.svws.core.data.gost.GostSchuelerFachwahl'].includes(name);
- }
- static transpilerFromJSON(json) {
- const obj = JSON.parse(json);
- const result = new GostSchuelerFachwahl();
- result.EF1 = typeof obj.EF1 === "undefined" ? null : obj.EF1;
- result.EF2 = typeof obj.EF2 === "undefined" ? null : obj.EF2;
- result.Q11 = typeof obj.Q11 === "undefined" ? null : obj.Q11;
- result.Q12 = typeof obj.Q12 === "undefined" ? null : obj.Q12;
- result.Q21 = typeof obj.Q21 === "undefined" ? null : obj.Q21;
- result.Q22 = typeof obj.Q22 === "undefined" ? null : obj.Q22;
- result.abiturFach = typeof obj.abiturFach === "undefined" ? null : obj.abiturFach;
- return result;
- }
- static transpilerToJSON(obj) {
- let result = '{';
- result += '"EF1" : ' + ((!obj.EF1) ? 'null' : '"' + obj.EF1.valueOf() + '"') + ',';
- result += '"EF2" : ' + ((!obj.EF2) ? 'null' : '"' + obj.EF2.valueOf() + '"') + ',';
- result += '"Q11" : ' + ((!obj.Q11) ? 'null' : '"' + obj.Q11.valueOf() + '"') + ',';
- result += '"Q12" : ' + ((!obj.Q12) ? 'null' : '"' + obj.Q12.valueOf() + '"') + ',';
- result += '"Q21" : ' + ((!obj.Q21) ? 'null' : '"' + obj.Q21.valueOf() + '"') + ',';
- result += '"Q22" : ' + ((!obj.Q22) ? 'null' : '"' + obj.Q22.valueOf() + '"') + ',';
- result += '"abiturFach" : ' + ((!obj.abiturFach) ? 'null' : obj.abiturFach.valueOf()) + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- static transpilerToJSONPatch(obj) {
- let result = '{';
- if (typeof obj.EF1 !== "undefined") {
- result += '"EF1" : ' + ((!obj.EF1) ? 'null' : '"' + obj.EF1.valueOf() + '"') + ',';
- }
- if (typeof obj.EF2 !== "undefined") {
- result += '"EF2" : ' + ((!obj.EF2) ? 'null' : '"' + obj.EF2.valueOf() + '"') + ',';
- }
- if (typeof obj.Q11 !== "undefined") {
- result += '"Q11" : ' + ((!obj.Q11) ? 'null' : '"' + obj.Q11.valueOf() + '"') + ',';
- }
- if (typeof obj.Q12 !== "undefined") {
- result += '"Q12" : ' + ((!obj.Q12) ? 'null' : '"' + obj.Q12.valueOf() + '"') + ',';
- }
- if (typeof obj.Q21 !== "undefined") {
- result += '"Q21" : ' + ((!obj.Q21) ? 'null' : '"' + obj.Q21.valueOf() + '"') + ',';
- }
- if (typeof obj.Q22 !== "undefined") {
- result += '"Q22" : ' + ((!obj.Q22) ? 'null' : '"' + obj.Q22.valueOf() + '"') + ',';
- }
- if (typeof obj.abiturFach !== "undefined") {
- result += '"abiturFach" : ' + ((!obj.abiturFach) ? 'null' : obj.abiturFach.valueOf()) + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- exports.GostSchuelerFachwahl = GostSchuelerFachwahl;
- function cast_de_nrw_schule_svws_core_data_gost_GostSchuelerFachwahl(obj) {
- return obj;
- }
- exports.cast_de_nrw_schule_svws_core_data_gost_GostSchuelerFachwahl = cast_de_nrw_schule_svws_core_data_gost_GostSchuelerFachwahl;
- //# sourceMappingURL=GostSchuelerFachwahl.js.map
|