ENMTeilleistungsart.ts 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaInteger, cast_java_lang_Integer } from '../../../java/lang/JavaInteger';
  3. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  4. import { JavaDouble, cast_java_lang_Double } from '../../../java/lang/JavaDouble';
  5. export class ENMTeilleistungsart extends JavaObject {
  6. public id : number = 0;
  7. public bezeichnung : String | null = null;
  8. public sortierung : Number | null = null;
  9. public gewichtung : Number | null = null;
  10. public constructor() {
  11. super();
  12. }
  13. isTranspiledInstanceOf(name : string): boolean {
  14. return ['de.nrw.schule.svws.core.data.enm.ENMTeilleistungsart'].includes(name);
  15. }
  16. public static transpilerFromJSON(json : string): ENMTeilleistungsart {
  17. const obj = JSON.parse(json);
  18. const result = new ENMTeilleistungsart();
  19. if (typeof obj.id === "undefined")
  20. throw new Error('invalid json format, missing attribute id');
  21. result.id = obj.id;
  22. result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
  23. result.sortierung = typeof obj.sortierung === "undefined" ? null : obj.sortierung;
  24. result.gewichtung = typeof obj.gewichtung === "undefined" ? null : obj.gewichtung;
  25. return result;
  26. }
  27. public static transpilerToJSON(obj : ENMTeilleistungsart) : string {
  28. let result = '{';
  29. result += '"id" : ' + obj.id + ',';
  30. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  31. result += '"sortierung" : ' + ((!obj.sortierung) ? 'null' : obj.sortierung.valueOf()) + ',';
  32. result += '"gewichtung" : ' + ((!obj.gewichtung) ? 'null' : obj.gewichtung.valueOf()) + ',';
  33. result = result.slice(0, -1);
  34. result += '}';
  35. return result;
  36. }
  37. public static transpilerToJSONPatch(obj : Partial<ENMTeilleistungsart>) : string {
  38. let result = '{';
  39. if (typeof obj.id !== "undefined") {
  40. result += '"id" : ' + obj.id + ',';
  41. }
  42. if (typeof obj.bezeichnung !== "undefined") {
  43. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  44. }
  45. if (typeof obj.sortierung !== "undefined") {
  46. result += '"sortierung" : ' + ((!obj.sortierung) ? 'null' : obj.sortierung.valueOf()) + ',';
  47. }
  48. if (typeof obj.gewichtung !== "undefined") {
  49. result += '"gewichtung" : ' + ((!obj.gewichtung) ? 'null' : obj.gewichtung.valueOf()) + ',';
  50. }
  51. result = result.slice(0, -1);
  52. result += '}';
  53. return result;
  54. }
  55. }
  56. export function cast_de_nrw_schule_svws_core_data_enm_ENMTeilleistungsart(obj : unknown) : ENMTeilleistungsart {
  57. return obj as ENMTeilleistungsart;
  58. }