123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
- import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
- export class ENMBKFach extends JavaObject {
- public fachID : number = 0;
- public lehrerID : number = 0;
- public istSchriftlich : boolean = false;
- public vornote : String | null = null;
- public noteSchriftlichePruefung : String | null = null;
- public muendlichePruefung : boolean = false;
- public muendlichePruefungFreiwillig : boolean = false;
- public noteMuendlichePruefung : String | null = null;
- public istSchriftlichBerufsabschluss : boolean = false;
- public noteBerufsabschluss : String | null = null;
- public abschlussnote : String | null = null;
- public constructor() {
- super();
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['de.nrw.schule.svws.core.data.enm.ENMBKFach'].includes(name);
- }
- public static transpilerFromJSON(json : string): ENMBKFach {
- const obj = JSON.parse(json);
- const result = new ENMBKFach();
- if (typeof obj.fachID === "undefined")
- throw new Error('invalid json format, missing attribute fachID');
- result.fachID = obj.fachID;
- if (typeof obj.lehrerID === "undefined")
- throw new Error('invalid json format, missing attribute lehrerID');
- result.lehrerID = obj.lehrerID;
- if (typeof obj.istSchriftlich === "undefined")
- throw new Error('invalid json format, missing attribute istSchriftlich');
- result.istSchriftlich = obj.istSchriftlich;
- result.vornote = typeof obj.vornote === "undefined" ? null : obj.vornote;
- result.noteSchriftlichePruefung = typeof obj.noteSchriftlichePruefung === "undefined" ? null : obj.noteSchriftlichePruefung;
- if (typeof obj.muendlichePruefung === "undefined")
- throw new Error('invalid json format, missing attribute muendlichePruefung');
- result.muendlichePruefung = obj.muendlichePruefung;
- if (typeof obj.muendlichePruefungFreiwillig === "undefined")
- throw new Error('invalid json format, missing attribute muendlichePruefungFreiwillig');
- result.muendlichePruefungFreiwillig = obj.muendlichePruefungFreiwillig;
- result.noteMuendlichePruefung = typeof obj.noteMuendlichePruefung === "undefined" ? null : obj.noteMuendlichePruefung;
- if (typeof obj.istSchriftlichBerufsabschluss === "undefined")
- throw new Error('invalid json format, missing attribute istSchriftlichBerufsabschluss');
- result.istSchriftlichBerufsabschluss = obj.istSchriftlichBerufsabschluss;
- result.noteBerufsabschluss = typeof obj.noteBerufsabschluss === "undefined" ? null : obj.noteBerufsabschluss;
- result.abschlussnote = typeof obj.abschlussnote === "undefined" ? null : obj.abschlussnote;
- return result;
- }
- public static transpilerToJSON(obj : ENMBKFach) : string {
- let result = '{';
- result += '"fachID" : ' + obj.fachID + ',';
- result += '"lehrerID" : ' + obj.lehrerID + ',';
- result += '"istSchriftlich" : ' + obj.istSchriftlich + ',';
- result += '"vornote" : ' + ((!obj.vornote) ? 'null' : '"' + obj.vornote.valueOf() + '"') + ',';
- result += '"noteSchriftlichePruefung" : ' + ((!obj.noteSchriftlichePruefung) ? 'null' : '"' + obj.noteSchriftlichePruefung.valueOf() + '"') + ',';
- result += '"muendlichePruefung" : ' + obj.muendlichePruefung + ',';
- result += '"muendlichePruefungFreiwillig" : ' + obj.muendlichePruefungFreiwillig + ',';
- result += '"noteMuendlichePruefung" : ' + ((!obj.noteMuendlichePruefung) ? 'null' : '"' + obj.noteMuendlichePruefung.valueOf() + '"') + ',';
- result += '"istSchriftlichBerufsabschluss" : ' + obj.istSchriftlichBerufsabschluss + ',';
- result += '"noteBerufsabschluss" : ' + ((!obj.noteBerufsabschluss) ? 'null' : '"' + obj.noteBerufsabschluss.valueOf() + '"') + ',';
- result += '"abschlussnote" : ' + ((!obj.abschlussnote) ? 'null' : '"' + obj.abschlussnote.valueOf() + '"') + ',';
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- public static transpilerToJSONPatch(obj : Partial<ENMBKFach>) : string {
- let result = '{';
- if (typeof obj.fachID !== "undefined") {
- result += '"fachID" : ' + obj.fachID + ',';
- }
- if (typeof obj.lehrerID !== "undefined") {
- result += '"lehrerID" : ' + obj.lehrerID + ',';
- }
- if (typeof obj.istSchriftlich !== "undefined") {
- result += '"istSchriftlich" : ' + obj.istSchriftlich + ',';
- }
- if (typeof obj.vornote !== "undefined") {
- result += '"vornote" : ' + ((!obj.vornote) ? 'null' : '"' + obj.vornote.valueOf() + '"') + ',';
- }
- if (typeof obj.noteSchriftlichePruefung !== "undefined") {
- result += '"noteSchriftlichePruefung" : ' + ((!obj.noteSchriftlichePruefung) ? 'null' : '"' + obj.noteSchriftlichePruefung.valueOf() + '"') + ',';
- }
- if (typeof obj.muendlichePruefung !== "undefined") {
- result += '"muendlichePruefung" : ' + obj.muendlichePruefung + ',';
- }
- if (typeof obj.muendlichePruefungFreiwillig !== "undefined") {
- result += '"muendlichePruefungFreiwillig" : ' + obj.muendlichePruefungFreiwillig + ',';
- }
- if (typeof obj.noteMuendlichePruefung !== "undefined") {
- result += '"noteMuendlichePruefung" : ' + ((!obj.noteMuendlichePruefung) ? 'null' : '"' + obj.noteMuendlichePruefung.valueOf() + '"') + ',';
- }
- if (typeof obj.istSchriftlichBerufsabschluss !== "undefined") {
- result += '"istSchriftlichBerufsabschluss" : ' + obj.istSchriftlichBerufsabschluss + ',';
- }
- if (typeof obj.noteBerufsabschluss !== "undefined") {
- result += '"noteBerufsabschluss" : ' + ((!obj.noteBerufsabschluss) ? 'null' : '"' + obj.noteBerufsabschluss.valueOf() + '"') + ',';
- }
- if (typeof obj.abschlussnote !== "undefined") {
- result += '"abschlussnote" : ' + ((!obj.abschlussnote) ? 'null' : '"' + obj.abschlussnote.valueOf() + '"') + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- export function cast_de_nrw_schule_svws_core_data_enm_ENMBKFach(obj : unknown) : ENMBKFach {
- return obj as ENMBKFach;
- }
|