123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
- import { List, cast_java_util_List } from '../../../java/util/List';
- import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
- import { JavaBoolean, cast_java_lang_Boolean } from '../../../java/lang/JavaBoolean';
- export class AbschlussErgebnisBerufsbildend extends JavaObject {
- public hatBSA : boolean = false;
- public note : number = 0;
- public hatBA : Boolean | null = null;
- public abschlussAllgemeinbildend : String | null = null;
- public log : List<String> | null = null;
- public constructor() {
- super();
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['de.nrw.schule.svws.core.data.abschluss.AbschlussErgebnisBerufsbildend'].includes(name);
- }
- public static transpilerFromJSON(json : string): AbschlussErgebnisBerufsbildend {
- const obj = JSON.parse(json);
- const result = new AbschlussErgebnisBerufsbildend();
- if (typeof obj.hatBSA === "undefined")
- throw new Error('invalid json format, missing attribute hatBSA');
- result.hatBSA = obj.hatBSA;
- if (typeof obj.note === "undefined")
- throw new Error('invalid json format, missing attribute note');
- result.note = obj.note;
- result.hatBA = typeof obj.hatBA === "undefined" ? null : obj.hatBA;
- result.abschlussAllgemeinbildend = typeof obj.abschlussAllgemeinbildend === "undefined" ? null : obj.abschlussAllgemeinbildend;
- if (!!obj.log) {
- for (let elem of obj.log) {
- result.log?.add(elem);
- }
- }
- return result;
- }
- public static transpilerToJSON(obj : AbschlussErgebnisBerufsbildend) : string {
- let result = '{';
- result += '"hatBSA" : ' + obj.hatBSA + ',';
- result += '"note" : ' + obj.note + ',';
- result += '"hatBA" : ' + ((!obj.hatBA) ? 'null' : obj.hatBA.valueOf()) + ',';
- result += '"abschlussAllgemeinbildend" : ' + ((!obj.abschlussAllgemeinbildend) ? 'null' : '"' + obj.abschlussAllgemeinbildend.valueOf() + '"') + ',';
- if (!obj.log) {
- result += '[]';
- } else {
- result += '[ ';
- for (let i : number = 0; i < obj.log.size(); i++) {
- let elem = obj.log.get(i);
- result += '"' + elem + '"';
- if (i < obj.log.size() - 1)
- result += ',';
- }
- result += ' ]' + ',';
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- public static transpilerToJSONPatch(obj : Partial<AbschlussErgebnisBerufsbildend>) : string {
- let result = '{';
- if (typeof obj.hatBSA !== "undefined") {
- result += '"hatBSA" : ' + obj.hatBSA + ',';
- }
- if (typeof obj.note !== "undefined") {
- result += '"note" : ' + obj.note + ',';
- }
- if (typeof obj.hatBA !== "undefined") {
- result += '"hatBA" : ' + ((!obj.hatBA) ? 'null' : obj.hatBA.valueOf()) + ',';
- }
- if (typeof obj.abschlussAllgemeinbildend !== "undefined") {
- result += '"abschlussAllgemeinbildend" : ' + ((!obj.abschlussAllgemeinbildend) ? 'null' : '"' + obj.abschlussAllgemeinbildend.valueOf() + '"') + ',';
- }
- if (typeof obj.log !== "undefined") {
- if (!obj.log) {
- result += '[]';
- } else {
- result += '[ ';
- for (let i : number = 0; i < obj.log.size(); i++) {
- let elem = obj.log.get(i);
- result += '"' + elem + '"';
- if (i < obj.log.size() - 1)
- result += ',';
- }
- result += ' ]' + ',';
- }
- }
- result = result.slice(0, -1);
- result += '}';
- return result;
- }
- }
- export function cast_de_nrw_schule_svws_core_data_abschluss_AbschlussErgebnisBerufsbildend(obj : unknown) : AbschlussErgebnisBerufsbildend {
- return obj as AbschlussErgebnisBerufsbildend;
- }
|