SchuelerSchulbesuchSchule.ts 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaLong, cast_java_lang_Long } from '../../../java/lang/JavaLong';
  3. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  4. export class SchuelerSchulbesuchSchule extends JavaObject {
  5. public schulnummer : String = "";
  6. public schulgliederung : String | null = null;
  7. public entlassgrundID : Number | null = null;
  8. public abschlussartID : String | null = null;
  9. public organisationsFormID : String | null = null;
  10. public datumVon : String | null = null;
  11. public datumBis : String | null = null;
  12. public jahrgangVon : String | null = null;
  13. public jahrgangBis : String | null = null;
  14. public constructor() {
  15. super();
  16. }
  17. isTranspiledInstanceOf(name : string): boolean {
  18. return ['de.nrw.schule.svws.core.data.schueler.SchuelerSchulbesuchSchule'].includes(name);
  19. }
  20. public static transpilerFromJSON(json : string): SchuelerSchulbesuchSchule {
  21. const obj = JSON.parse(json);
  22. const result = new SchuelerSchulbesuchSchule();
  23. if (typeof obj.schulnummer === "undefined")
  24. throw new Error('invalid json format, missing attribute schulnummer');
  25. result.schulnummer = obj.schulnummer;
  26. result.schulgliederung = typeof obj.schulgliederung === "undefined" ? null : obj.schulgliederung;
  27. result.entlassgrundID = typeof obj.entlassgrundID === "undefined" ? null : obj.entlassgrundID;
  28. result.abschlussartID = typeof obj.abschlussartID === "undefined" ? null : obj.abschlussartID;
  29. result.organisationsFormID = typeof obj.organisationsFormID === "undefined" ? null : obj.organisationsFormID;
  30. result.datumVon = typeof obj.datumVon === "undefined" ? null : obj.datumVon;
  31. result.datumBis = typeof obj.datumBis === "undefined" ? null : obj.datumBis;
  32. result.jahrgangVon = typeof obj.jahrgangVon === "undefined" ? null : obj.jahrgangVon;
  33. result.jahrgangBis = typeof obj.jahrgangBis === "undefined" ? null : obj.jahrgangBis;
  34. return result;
  35. }
  36. public static transpilerToJSON(obj : SchuelerSchulbesuchSchule) : string {
  37. let result = '{';
  38. result += '"schulnummer" : ' + '"' + obj.schulnummer.valueOf() + '"' + ',';
  39. result += '"schulgliederung" : ' + ((!obj.schulgliederung) ? 'null' : '"' + obj.schulgliederung.valueOf() + '"') + ',';
  40. result += '"entlassgrundID" : ' + ((!obj.entlassgrundID) ? 'null' : obj.entlassgrundID.valueOf()) + ',';
  41. result += '"abschlussartID" : ' + ((!obj.abschlussartID) ? 'null' : '"' + obj.abschlussartID.valueOf() + '"') + ',';
  42. result += '"organisationsFormID" : ' + ((!obj.organisationsFormID) ? 'null' : '"' + obj.organisationsFormID.valueOf() + '"') + ',';
  43. result += '"datumVon" : ' + ((!obj.datumVon) ? 'null' : '"' + obj.datumVon.valueOf() + '"') + ',';
  44. result += '"datumBis" : ' + ((!obj.datumBis) ? 'null' : '"' + obj.datumBis.valueOf() + '"') + ',';
  45. result += '"jahrgangVon" : ' + ((!obj.jahrgangVon) ? 'null' : '"' + obj.jahrgangVon.valueOf() + '"') + ',';
  46. result += '"jahrgangBis" : ' + ((!obj.jahrgangBis) ? 'null' : '"' + obj.jahrgangBis.valueOf() + '"') + ',';
  47. result = result.slice(0, -1);
  48. result += '}';
  49. return result;
  50. }
  51. public static transpilerToJSONPatch(obj : Partial<SchuelerSchulbesuchSchule>) : string {
  52. let result = '{';
  53. if (typeof obj.schulnummer !== "undefined") {
  54. result += '"schulnummer" : ' + '"' + obj.schulnummer.valueOf() + '"' + ',';
  55. }
  56. if (typeof obj.schulgliederung !== "undefined") {
  57. result += '"schulgliederung" : ' + ((!obj.schulgliederung) ? 'null' : '"' + obj.schulgliederung.valueOf() + '"') + ',';
  58. }
  59. if (typeof obj.entlassgrundID !== "undefined") {
  60. result += '"entlassgrundID" : ' + ((!obj.entlassgrundID) ? 'null' : obj.entlassgrundID.valueOf()) + ',';
  61. }
  62. if (typeof obj.abschlussartID !== "undefined") {
  63. result += '"abschlussartID" : ' + ((!obj.abschlussartID) ? 'null' : '"' + obj.abschlussartID.valueOf() + '"') + ',';
  64. }
  65. if (typeof obj.organisationsFormID !== "undefined") {
  66. result += '"organisationsFormID" : ' + ((!obj.organisationsFormID) ? 'null' : '"' + obj.organisationsFormID.valueOf() + '"') + ',';
  67. }
  68. if (typeof obj.datumVon !== "undefined") {
  69. result += '"datumVon" : ' + ((!obj.datumVon) ? 'null' : '"' + obj.datumVon.valueOf() + '"') + ',';
  70. }
  71. if (typeof obj.datumBis !== "undefined") {
  72. result += '"datumBis" : ' + ((!obj.datumBis) ? 'null' : '"' + obj.datumBis.valueOf() + '"') + ',';
  73. }
  74. if (typeof obj.jahrgangVon !== "undefined") {
  75. result += '"jahrgangVon" : ' + ((!obj.jahrgangVon) ? 'null' : '"' + obj.jahrgangVon.valueOf() + '"') + ',';
  76. }
  77. if (typeof obj.jahrgangBis !== "undefined") {
  78. result += '"jahrgangBis" : ' + ((!obj.jahrgangBis) ? 'null' : '"' + obj.jahrgangBis.valueOf() + '"') + ',';
  79. }
  80. result = result.slice(0, -1);
  81. result += '}';
  82. return result;
  83. }
  84. }
  85. export function cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchSchule(obj : unknown) : SchuelerSchulbesuchSchule {
  86. return obj as SchuelerSchulbesuchSchule;
  87. }