ENMSprachenfolge.ts 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. export class ENMSprachenfolge extends JavaObject {
  5. public sprache : String | null = null;
  6. public fachID : number = 0;
  7. public fachKuerzel : String | null = null;
  8. public reihenfolge : number = 0;
  9. public belegungVonJahrgang : number = 0;
  10. public belegungVonAbschnitt : number = 0;
  11. public belegungBisJahrgang : Number | null = null;
  12. public belegungBisAbschnitt : Number | null = null;
  13. public referenzniveau : String | null = null;
  14. public belegungSekI : Number | null = null;
  15. public constructor() {
  16. super();
  17. }
  18. isTranspiledInstanceOf(name : string): boolean {
  19. return ['de.nrw.schule.svws.core.data.enm.ENMSprachenfolge'].includes(name);
  20. }
  21. public static transpilerFromJSON(json : string): ENMSprachenfolge {
  22. const obj = JSON.parse(json);
  23. const result = new ENMSprachenfolge();
  24. result.sprache = typeof obj.sprache === "undefined" ? null : obj.sprache;
  25. if (typeof obj.fachID === "undefined")
  26. throw new Error('invalid json format, missing attribute fachID');
  27. result.fachID = obj.fachID;
  28. result.fachKuerzel = typeof obj.fachKuerzel === "undefined" ? null : obj.fachKuerzel;
  29. if (typeof obj.reihenfolge === "undefined")
  30. throw new Error('invalid json format, missing attribute reihenfolge');
  31. result.reihenfolge = obj.reihenfolge;
  32. if (typeof obj.belegungVonJahrgang === "undefined")
  33. throw new Error('invalid json format, missing attribute belegungVonJahrgang');
  34. result.belegungVonJahrgang = obj.belegungVonJahrgang;
  35. if (typeof obj.belegungVonAbschnitt === "undefined")
  36. throw new Error('invalid json format, missing attribute belegungVonAbschnitt');
  37. result.belegungVonAbschnitt = obj.belegungVonAbschnitt;
  38. result.belegungBisJahrgang = typeof obj.belegungBisJahrgang === "undefined" ? null : obj.belegungBisJahrgang;
  39. result.belegungBisAbschnitt = typeof obj.belegungBisAbschnitt === "undefined" ? null : obj.belegungBisAbschnitt;
  40. result.referenzniveau = typeof obj.referenzniveau === "undefined" ? null : obj.referenzniveau;
  41. result.belegungSekI = typeof obj.belegungSekI === "undefined" ? null : obj.belegungSekI;
  42. return result;
  43. }
  44. public static transpilerToJSON(obj : ENMSprachenfolge) : string {
  45. let result = '{';
  46. result += '"sprache" : ' + ((!obj.sprache) ? 'null' : '"' + obj.sprache.valueOf() + '"') + ',';
  47. result += '"fachID" : ' + obj.fachID + ',';
  48. result += '"fachKuerzel" : ' + ((!obj.fachKuerzel) ? 'null' : '"' + obj.fachKuerzel.valueOf() + '"') + ',';
  49. result += '"reihenfolge" : ' + obj.reihenfolge + ',';
  50. result += '"belegungVonJahrgang" : ' + obj.belegungVonJahrgang + ',';
  51. result += '"belegungVonAbschnitt" : ' + obj.belegungVonAbschnitt + ',';
  52. result += '"belegungBisJahrgang" : ' + ((!obj.belegungBisJahrgang) ? 'null' : obj.belegungBisJahrgang.valueOf()) + ',';
  53. result += '"belegungBisAbschnitt" : ' + ((!obj.belegungBisAbschnitt) ? 'null' : obj.belegungBisAbschnitt.valueOf()) + ',';
  54. result += '"referenzniveau" : ' + ((!obj.referenzniveau) ? 'null' : '"' + obj.referenzniveau.valueOf() + '"') + ',';
  55. result += '"belegungSekI" : ' + ((!obj.belegungSekI) ? 'null' : obj.belegungSekI.valueOf()) + ',';
  56. result = result.slice(0, -1);
  57. result += '}';
  58. return result;
  59. }
  60. public static transpilerToJSONPatch(obj : Partial<ENMSprachenfolge>) : string {
  61. let result = '{';
  62. if (typeof obj.sprache !== "undefined") {
  63. result += '"sprache" : ' + ((!obj.sprache) ? 'null' : '"' + obj.sprache.valueOf() + '"') + ',';
  64. }
  65. if (typeof obj.fachID !== "undefined") {
  66. result += '"fachID" : ' + obj.fachID + ',';
  67. }
  68. if (typeof obj.fachKuerzel !== "undefined") {
  69. result += '"fachKuerzel" : ' + ((!obj.fachKuerzel) ? 'null' : '"' + obj.fachKuerzel.valueOf() + '"') + ',';
  70. }
  71. if (typeof obj.reihenfolge !== "undefined") {
  72. result += '"reihenfolge" : ' + obj.reihenfolge + ',';
  73. }
  74. if (typeof obj.belegungVonJahrgang !== "undefined") {
  75. result += '"belegungVonJahrgang" : ' + obj.belegungVonJahrgang + ',';
  76. }
  77. if (typeof obj.belegungVonAbschnitt !== "undefined") {
  78. result += '"belegungVonAbschnitt" : ' + obj.belegungVonAbschnitt + ',';
  79. }
  80. if (typeof obj.belegungBisJahrgang !== "undefined") {
  81. result += '"belegungBisJahrgang" : ' + ((!obj.belegungBisJahrgang) ? 'null' : obj.belegungBisJahrgang.valueOf()) + ',';
  82. }
  83. if (typeof obj.belegungBisAbschnitt !== "undefined") {
  84. result += '"belegungBisAbschnitt" : ' + ((!obj.belegungBisAbschnitt) ? 'null' : obj.belegungBisAbschnitt.valueOf()) + ',';
  85. }
  86. if (typeof obj.referenzniveau !== "undefined") {
  87. result += '"referenzniveau" : ' + ((!obj.referenzniveau) ? 'null' : '"' + obj.referenzniveau.valueOf() + '"') + ',';
  88. }
  89. if (typeof obj.belegungSekI !== "undefined") {
  90. result += '"belegungSekI" : ' + ((!obj.belegungSekI) ? 'null' : obj.belegungSekI.valueOf()) + ',';
  91. }
  92. result = result.slice(0, -1);
  93. result += '}';
  94. return result;
  95. }
  96. }
  97. export function cast_de_nrw_schule_svws_core_data_enm_ENMSprachenfolge(obj : unknown) : ENMSprachenfolge {
  98. return obj as ENMSprachenfolge;
  99. }