123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
- import { JavaInteger, cast_java_lang_Integer } from '../../../java/lang/JavaInteger';
- import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
- export class GostBlockungKurs extends JavaObject {
- public id : number = -1;
- public fach_id : number = -1;
- public kursart : number = 0;
- public nummer : number = 0;
- public istKoopKurs : boolean = false;
- public suffix : String = "";
- public wochenstunden : Number | null = 3;
- public constructor() {
- super();
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['de.nrw.schule.svws.core.data.gost.GostBlockungKurs'].includes(name);
- }
- public static transpilerFromJSON(json : string): GostBlockungKurs {
- const obj = JSON.parse(json);
- const result = new GostBlockungKurs();
- if (typeof obj.id === "undefined")
- throw new Error('invalid json format, missing attribute id');
- result.id = obj.id;
- if (typeof obj.fach_id === "undefined")
- throw new Error('invalid json format, missing attribute fach_id');
- result.fach_id = obj.fach_id;
- if (typeof obj.kursart === "undefined")
- throw new Error('invalid json format, missing attribute kursart');
- result.kursart = obj.kursart;
- if (typeof obj.nummer === "undefined")
- throw new Error('invalid json format, missing attribute nummer');
- result.nummer = obj.nummer;
- if (typeof obj.istKoopKurs === "undefined")
- throw new Error('invalid json format, missing attribute istKoopKurs');
- result.istKoopKurs = obj.istKoopKurs;
- if (typeof obj.suffix === "undefined")
- throw new Error('invalid json format, missing attribute suffix');
- result.suffix = obj.suffix;
- result.wochenstunden = typeof obj.wochenstunden === "undefined" ? null : obj.wochenstunden;
- return result;
- }
- public static transpilerToJSON(obj : GostBlockungKurs) : string {
- let result = '{';
- result += '"id" : ' + obj.id + ',';
- result += '"fach_id" : ' + obj.fach_id + ',';
- result += '"kursart" : ' + obj.kursart + ',';
- result += '"nummer" : ' + obj.nummer + ',';
- result += '"istKoopKurs" : ' + obj.istKoopKurs + ',';
- result += '"suffix" : ' + '"' + obj.suffix.valueOf() + '"' + ',';
- result += '"wochenstunden" : ' + ((!obj.wochenstunden) ? 'null' : obj.wochenstunden.valueOf()) + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- public static transpilerToJSONPatch(obj : Partial<GostBlockungKurs>) : string {
- let result = '{';
- if (typeof obj.id !== "undefined") {
- result += '"id" : ' + obj.id + ',';
- }
- if (typeof obj.fach_id !== "undefined") {
- result += '"fach_id" : ' + obj.fach_id + ',';
- }
- if (typeof obj.kursart !== "undefined") {
- result += '"kursart" : ' + obj.kursart + ',';
- }
- if (typeof obj.nummer !== "undefined") {
- result += '"nummer" : ' + obj.nummer + ',';
- }
- if (typeof obj.istKoopKurs !== "undefined") {
- result += '"istKoopKurs" : ' + obj.istKoopKurs + ',';
- }
- if (typeof obj.suffix !== "undefined") {
- result += '"suffix" : ' + '"' + obj.suffix.valueOf() + '"' + ',';
- }
- if (typeof obj.wochenstunden !== "undefined") {
- result += '"wochenstunden" : ' + ((!obj.wochenstunden) ? 'null' : obj.wochenstunden.valueOf()) + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- export function cast_de_nrw_schule_svws_core_data_gost_GostBlockungKurs(obj : unknown) : GostBlockungKurs {
- return obj as GostBlockungKurs;
- }
|