GEAbschlussFach.ts 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  3. import { JavaBoolean, cast_java_lang_Boolean } from '../../../java/lang/JavaBoolean';
  4. export class GEAbschlussFach extends JavaObject {
  5. public kuerzel : String | null = null;
  6. public bezeichnung : String | null = null;
  7. public note : number = -1;
  8. public istFremdsprache : Boolean | null = false;
  9. public kursart : String | null = "";
  10. public ausgleich : Boolean | null = false;
  11. public ausgeglichen : Boolean | null = false;
  12. public constructor() {
  13. super();
  14. }
  15. isTranspiledInstanceOf(name : string): boolean {
  16. return ['de.nrw.schule.svws.core.data.abschluss.GEAbschlussFach'].includes(name);
  17. }
  18. public static transpilerFromJSON(json : string): GEAbschlussFach {
  19. const obj = JSON.parse(json);
  20. const result = new GEAbschlussFach();
  21. result.kuerzel = typeof obj.kuerzel === "undefined" ? null : obj.kuerzel;
  22. result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
  23. if (typeof obj.note === "undefined")
  24. throw new Error('invalid json format, missing attribute note');
  25. result.note = obj.note;
  26. result.istFremdsprache = typeof obj.istFremdsprache === "undefined" ? null : obj.istFremdsprache;
  27. result.kursart = typeof obj.kursart === "undefined" ? null : obj.kursart;
  28. result.ausgleich = typeof obj.ausgleich === "undefined" ? null : obj.ausgleich;
  29. result.ausgeglichen = typeof obj.ausgeglichen === "undefined" ? null : obj.ausgeglichen;
  30. return result;
  31. }
  32. public static transpilerToJSON(obj : GEAbschlussFach) : string {
  33. let result = '{';
  34. result += '"kuerzel" : ' + ((!obj.kuerzel) ? 'null' : '"' + obj.kuerzel.valueOf() + '"') + ',';
  35. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  36. result += '"note" : ' + obj.note + ',';
  37. result += '"istFremdsprache" : ' + ((!obj.istFremdsprache) ? 'null' : obj.istFremdsprache.valueOf()) + ',';
  38. result += '"kursart" : ' + ((!obj.kursart) ? 'null' : '"' + obj.kursart.valueOf() + '"') + ',';
  39. result += '"ausgleich" : ' + ((!obj.ausgleich) ? 'null' : obj.ausgleich.valueOf()) + ',';
  40. result += '"ausgeglichen" : ' + ((!obj.ausgeglichen) ? 'null' : obj.ausgeglichen.valueOf()) + ',';
  41. result = result.slice(0, -1);
  42. result += '}';
  43. return result;
  44. }
  45. public static transpilerToJSONPatch(obj : Partial<GEAbschlussFach>) : string {
  46. let result = '{';
  47. if (typeof obj.kuerzel !== "undefined") {
  48. result += '"kuerzel" : ' + ((!obj.kuerzel) ? 'null' : '"' + obj.kuerzel.valueOf() + '"') + ',';
  49. }
  50. if (typeof obj.bezeichnung !== "undefined") {
  51. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  52. }
  53. if (typeof obj.note !== "undefined") {
  54. result += '"note" : ' + obj.note + ',';
  55. }
  56. if (typeof obj.istFremdsprache !== "undefined") {
  57. result += '"istFremdsprache" : ' + ((!obj.istFremdsprache) ? 'null' : obj.istFremdsprache.valueOf()) + ',';
  58. }
  59. if (typeof obj.kursart !== "undefined") {
  60. result += '"kursart" : ' + ((!obj.kursart) ? 'null' : '"' + obj.kursart.valueOf() + '"') + ',';
  61. }
  62. if (typeof obj.ausgleich !== "undefined") {
  63. result += '"ausgleich" : ' + ((!obj.ausgleich) ? 'null' : obj.ausgleich.valueOf()) + ',';
  64. }
  65. if (typeof obj.ausgeglichen !== "undefined") {
  66. result += '"ausgeglichen" : ' + ((!obj.ausgeglichen) ? 'null' : obj.ausgeglichen.valueOf()) + ',';
  67. }
  68. result = result.slice(0, -1);
  69. result += '}';
  70. return result;
  71. }
  72. }
  73. export function cast_de_nrw_schule_svws_core_data_abschluss_GEAbschlussFach(obj : unknown) : GEAbschlussFach {
  74. return obj as GEAbschlussFach;
  75. }