ENMBKFach.ts 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  3. export class ENMBKFach extends JavaObject {
  4. public fachID : number = 0;
  5. public lehrerID : number = 0;
  6. public istSchriftlich : boolean = false;
  7. public vornote : String | null = null;
  8. public noteSchriftlichePruefung : String | null = null;
  9. public muendlichePruefung : boolean = false;
  10. public muendlichePruefungFreiwillig : boolean = false;
  11. public noteMuendlichePruefung : String | null = null;
  12. public istSchriftlichBerufsabschluss : boolean = false;
  13. public noteBerufsabschluss : String | null = null;
  14. public abschlussnote : String | null = null;
  15. public constructor() {
  16. super();
  17. }
  18. isTranspiledInstanceOf(name : string): boolean {
  19. return ['de.nrw.schule.svws.core.data.enm.ENMBKFach'].includes(name);
  20. }
  21. public static transpilerFromJSON(json : string): ENMBKFach {
  22. const obj = JSON.parse(json);
  23. const result = new ENMBKFach();
  24. if (typeof obj.fachID === "undefined")
  25. throw new Error('invalid json format, missing attribute fachID');
  26. result.fachID = obj.fachID;
  27. if (typeof obj.lehrerID === "undefined")
  28. throw new Error('invalid json format, missing attribute lehrerID');
  29. result.lehrerID = obj.lehrerID;
  30. if (typeof obj.istSchriftlich === "undefined")
  31. throw new Error('invalid json format, missing attribute istSchriftlich');
  32. result.istSchriftlich = obj.istSchriftlich;
  33. result.vornote = typeof obj.vornote === "undefined" ? null : obj.vornote;
  34. result.noteSchriftlichePruefung = typeof obj.noteSchriftlichePruefung === "undefined" ? null : obj.noteSchriftlichePruefung;
  35. if (typeof obj.muendlichePruefung === "undefined")
  36. throw new Error('invalid json format, missing attribute muendlichePruefung');
  37. result.muendlichePruefung = obj.muendlichePruefung;
  38. if (typeof obj.muendlichePruefungFreiwillig === "undefined")
  39. throw new Error('invalid json format, missing attribute muendlichePruefungFreiwillig');
  40. result.muendlichePruefungFreiwillig = obj.muendlichePruefungFreiwillig;
  41. result.noteMuendlichePruefung = typeof obj.noteMuendlichePruefung === "undefined" ? null : obj.noteMuendlichePruefung;
  42. if (typeof obj.istSchriftlichBerufsabschluss === "undefined")
  43. throw new Error('invalid json format, missing attribute istSchriftlichBerufsabschluss');
  44. result.istSchriftlichBerufsabschluss = obj.istSchriftlichBerufsabschluss;
  45. result.noteBerufsabschluss = typeof obj.noteBerufsabschluss === "undefined" ? null : obj.noteBerufsabschluss;
  46. result.abschlussnote = typeof obj.abschlussnote === "undefined" ? null : obj.abschlussnote;
  47. return result;
  48. }
  49. public static transpilerToJSON(obj : ENMBKFach) : string {
  50. let result = '{';
  51. result += '"fachID" : ' + obj.fachID + ',';
  52. result += '"lehrerID" : ' + obj.lehrerID + ',';
  53. result += '"istSchriftlich" : ' + obj.istSchriftlich + ',';
  54. result += '"vornote" : ' + ((!obj.vornote) ? 'null' : '"' + obj.vornote.valueOf() + '"') + ',';
  55. result += '"noteSchriftlichePruefung" : ' + ((!obj.noteSchriftlichePruefung) ? 'null' : '"' + obj.noteSchriftlichePruefung.valueOf() + '"') + ',';
  56. result += '"muendlichePruefung" : ' + obj.muendlichePruefung + ',';
  57. result += '"muendlichePruefungFreiwillig" : ' + obj.muendlichePruefungFreiwillig + ',';
  58. result += '"noteMuendlichePruefung" : ' + ((!obj.noteMuendlichePruefung) ? 'null' : '"' + obj.noteMuendlichePruefung.valueOf() + '"') + ',';
  59. result += '"istSchriftlichBerufsabschluss" : ' + obj.istSchriftlichBerufsabschluss + ',';
  60. result += '"noteBerufsabschluss" : ' + ((!obj.noteBerufsabschluss) ? 'null' : '"' + obj.noteBerufsabschluss.valueOf() + '"') + ',';
  61. result += '"abschlussnote" : ' + ((!obj.abschlussnote) ? 'null' : '"' + obj.abschlussnote.valueOf() + '"') + ',';
  62. result = result.slice(0, -1);
  63. result += '}';
  64. return result;
  65. }
  66. public static transpilerToJSONPatch(obj : Partial<ENMBKFach>) : string {
  67. let result = '{';
  68. if (typeof obj.fachID !== "undefined") {
  69. result += '"fachID" : ' + obj.fachID + ',';
  70. }
  71. if (typeof obj.lehrerID !== "undefined") {
  72. result += '"lehrerID" : ' + obj.lehrerID + ',';
  73. }
  74. if (typeof obj.istSchriftlich !== "undefined") {
  75. result += '"istSchriftlich" : ' + obj.istSchriftlich + ',';
  76. }
  77. if (typeof obj.vornote !== "undefined") {
  78. result += '"vornote" : ' + ((!obj.vornote) ? 'null' : '"' + obj.vornote.valueOf() + '"') + ',';
  79. }
  80. if (typeof obj.noteSchriftlichePruefung !== "undefined") {
  81. result += '"noteSchriftlichePruefung" : ' + ((!obj.noteSchriftlichePruefung) ? 'null' : '"' + obj.noteSchriftlichePruefung.valueOf() + '"') + ',';
  82. }
  83. if (typeof obj.muendlichePruefung !== "undefined") {
  84. result += '"muendlichePruefung" : ' + obj.muendlichePruefung + ',';
  85. }
  86. if (typeof obj.muendlichePruefungFreiwillig !== "undefined") {
  87. result += '"muendlichePruefungFreiwillig" : ' + obj.muendlichePruefungFreiwillig + ',';
  88. }
  89. if (typeof obj.noteMuendlichePruefung !== "undefined") {
  90. result += '"noteMuendlichePruefung" : ' + ((!obj.noteMuendlichePruefung) ? 'null' : '"' + obj.noteMuendlichePruefung.valueOf() + '"') + ',';
  91. }
  92. if (typeof obj.istSchriftlichBerufsabschluss !== "undefined") {
  93. result += '"istSchriftlichBerufsabschluss" : ' + obj.istSchriftlichBerufsabschluss + ',';
  94. }
  95. if (typeof obj.noteBerufsabschluss !== "undefined") {
  96. result += '"noteBerufsabschluss" : ' + ((!obj.noteBerufsabschluss) ? 'null' : '"' + obj.noteBerufsabschluss.valueOf() + '"') + ',';
  97. }
  98. if (typeof obj.abschlussnote !== "undefined") {
  99. result += '"abschlussnote" : ' + ((!obj.abschlussnote) ? 'null' : '"' + obj.abschlussnote.valueOf() + '"') + ',';
  100. }
  101. result = result.slice(0, -1);
  102. result += '}';
  103. return result;
  104. }
  105. }
  106. export function cast_de_nrw_schule_svws_core_data_enm_ENMBKFach(obj : unknown) : ENMBKFach {
  107. return obj as ENMBKFach;
  108. }