1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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 GostBlockungSchiene extends JavaObject {
- public id : number = -1;
- public bezeichnung : String = "Neue Schiene";
- public wochenstunden : Number | null = 3;
- public constructor() {
- super();
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['de.nrw.schule.svws.core.data.gost.GostBlockungSchiene'].includes(name);
- }
- public static transpilerFromJSON(json : string): GostBlockungSchiene {
- 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;
- }
- public static transpilerToJSON(obj : GostBlockungSchiene) : string {
- 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;
- }
- public static transpilerToJSONPatch(obj : Partial<GostBlockungSchiene>) : string {
- 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;
- }
- }
- export function cast_de_nrw_schule_svws_core_data_gost_GostBlockungSchiene(obj : unknown) : GostBlockungSchiene {
- return obj as GostBlockungSchiene;
- }
|