ErzieherStammdaten.ts 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. import { JavaBoolean, cast_java_lang_Boolean } from '../../../java/lang/JavaBoolean';
  5. export class ErzieherStammdaten extends JavaObject {
  6. public id : number = 0;
  7. public idSchueler : number = 0;
  8. public idErzieherArt : Number | null = null;
  9. public titel : String | null = null;
  10. public anrede : String | null = null;
  11. public nachname : String | null = null;
  12. public zusatzNachname : String | null = null;
  13. public vorname : String | null = null;
  14. public strassenname : String | null = null;
  15. public hausnummer : String | null = null;
  16. public hausnummerZusatz : String | null = null;
  17. public wohnortID : Number | null = null;
  18. public ortsteilID : Number | null = null;
  19. public erhaeltAnschreiben : Boolean | null = null;
  20. public eMail : String | null = null;
  21. public staatsangehoerigkeitID : String | null = null;
  22. public bemerkungen : String | null = null;
  23. public constructor() {
  24. super();
  25. }
  26. isTranspiledInstanceOf(name : string): boolean {
  27. return ['de.nrw.schule.svws.core.data.erzieher.ErzieherStammdaten'].includes(name);
  28. }
  29. public static transpilerFromJSON(json : string): ErzieherStammdaten {
  30. const obj = JSON.parse(json);
  31. const result = new ErzieherStammdaten();
  32. if (typeof obj.id === "undefined")
  33. throw new Error('invalid json format, missing attribute id');
  34. result.id = obj.id;
  35. if (typeof obj.idSchueler === "undefined")
  36. throw new Error('invalid json format, missing attribute idSchueler');
  37. result.idSchueler = obj.idSchueler;
  38. result.idErzieherArt = typeof obj.idErzieherArt === "undefined" ? null : obj.idErzieherArt;
  39. result.titel = typeof obj.titel === "undefined" ? null : obj.titel;
  40. result.anrede = typeof obj.anrede === "undefined" ? null : obj.anrede;
  41. result.nachname = typeof obj.nachname === "undefined" ? null : obj.nachname;
  42. result.zusatzNachname = typeof obj.zusatzNachname === "undefined" ? null : obj.zusatzNachname;
  43. result.vorname = typeof obj.vorname === "undefined" ? null : obj.vorname;
  44. result.strassenname = typeof obj.strassenname === "undefined" ? null : obj.strassenname;
  45. result.hausnummer = typeof obj.hausnummer === "undefined" ? null : obj.hausnummer;
  46. result.hausnummerZusatz = typeof obj.hausnummerZusatz === "undefined" ? null : obj.hausnummerZusatz;
  47. result.wohnortID = typeof obj.wohnortID === "undefined" ? null : obj.wohnortID;
  48. result.ortsteilID = typeof obj.ortsteilID === "undefined" ? null : obj.ortsteilID;
  49. result.erhaeltAnschreiben = typeof obj.erhaeltAnschreiben === "undefined" ? null : obj.erhaeltAnschreiben;
  50. result.eMail = typeof obj.eMail === "undefined" ? null : obj.eMail;
  51. result.staatsangehoerigkeitID = typeof obj.staatsangehoerigkeitID === "undefined" ? null : obj.staatsangehoerigkeitID;
  52. result.bemerkungen = typeof obj.bemerkungen === "undefined" ? null : obj.bemerkungen;
  53. return result;
  54. }
  55. public static transpilerToJSON(obj : ErzieherStammdaten) : string {
  56. let result = '{';
  57. result += '"id" : ' + obj.id + ',';
  58. result += '"idSchueler" : ' + obj.idSchueler + ',';
  59. result += '"idErzieherArt" : ' + ((!obj.idErzieherArt) ? 'null' : obj.idErzieherArt.valueOf()) + ',';
  60. result += '"titel" : ' + ((!obj.titel) ? 'null' : '"' + obj.titel.valueOf() + '"') + ',';
  61. result += '"anrede" : ' + ((!obj.anrede) ? 'null' : '"' + obj.anrede.valueOf() + '"') + ',';
  62. result += '"nachname" : ' + ((!obj.nachname) ? 'null' : '"' + obj.nachname.valueOf() + '"') + ',';
  63. result += '"zusatzNachname" : ' + ((!obj.zusatzNachname) ? 'null' : '"' + obj.zusatzNachname.valueOf() + '"') + ',';
  64. result += '"vorname" : ' + ((!obj.vorname) ? 'null' : '"' + obj.vorname.valueOf() + '"') + ',';
  65. result += '"strassenname" : ' + ((!obj.strassenname) ? 'null' : '"' + obj.strassenname.valueOf() + '"') + ',';
  66. result += '"hausnummer" : ' + ((!obj.hausnummer) ? 'null' : '"' + obj.hausnummer.valueOf() + '"') + ',';
  67. result += '"hausnummerZusatz" : ' + ((!obj.hausnummerZusatz) ? 'null' : '"' + obj.hausnummerZusatz.valueOf() + '"') + ',';
  68. result += '"wohnortID" : ' + ((!obj.wohnortID) ? 'null' : obj.wohnortID.valueOf()) + ',';
  69. result += '"ortsteilID" : ' + ((!obj.ortsteilID) ? 'null' : obj.ortsteilID.valueOf()) + ',';
  70. result += '"erhaeltAnschreiben" : ' + ((!obj.erhaeltAnschreiben) ? 'null' : obj.erhaeltAnschreiben.valueOf()) + ',';
  71. result += '"eMail" : ' + ((!obj.eMail) ? 'null' : '"' + obj.eMail.valueOf() + '"') + ',';
  72. result += '"staatsangehoerigkeitID" : ' + ((!obj.staatsangehoerigkeitID) ? 'null' : '"' + obj.staatsangehoerigkeitID.valueOf() + '"') + ',';
  73. result += '"bemerkungen" : ' + ((!obj.bemerkungen) ? 'null' : '"' + obj.bemerkungen.valueOf() + '"') + ',';
  74. result = result.slice(0, -1);
  75. result += '}';
  76. return result;
  77. }
  78. public static transpilerToJSONPatch(obj : Partial<ErzieherStammdaten>) : string {
  79. let result = '{';
  80. if (typeof obj.id !== "undefined") {
  81. result += '"id" : ' + obj.id + ',';
  82. }
  83. if (typeof obj.idSchueler !== "undefined") {
  84. result += '"idSchueler" : ' + obj.idSchueler + ',';
  85. }
  86. if (typeof obj.idErzieherArt !== "undefined") {
  87. result += '"idErzieherArt" : ' + ((!obj.idErzieherArt) ? 'null' : obj.idErzieherArt.valueOf()) + ',';
  88. }
  89. if (typeof obj.titel !== "undefined") {
  90. result += '"titel" : ' + ((!obj.titel) ? 'null' : '"' + obj.titel.valueOf() + '"') + ',';
  91. }
  92. if (typeof obj.anrede !== "undefined") {
  93. result += '"anrede" : ' + ((!obj.anrede) ? 'null' : '"' + obj.anrede.valueOf() + '"') + ',';
  94. }
  95. if (typeof obj.nachname !== "undefined") {
  96. result += '"nachname" : ' + ((!obj.nachname) ? 'null' : '"' + obj.nachname.valueOf() + '"') + ',';
  97. }
  98. if (typeof obj.zusatzNachname !== "undefined") {
  99. result += '"zusatzNachname" : ' + ((!obj.zusatzNachname) ? 'null' : '"' + obj.zusatzNachname.valueOf() + '"') + ',';
  100. }
  101. if (typeof obj.vorname !== "undefined") {
  102. result += '"vorname" : ' + ((!obj.vorname) ? 'null' : '"' + obj.vorname.valueOf() + '"') + ',';
  103. }
  104. if (typeof obj.strassenname !== "undefined") {
  105. result += '"strassenname" : ' + ((!obj.strassenname) ? 'null' : '"' + obj.strassenname.valueOf() + '"') + ',';
  106. }
  107. if (typeof obj.hausnummer !== "undefined") {
  108. result += '"hausnummer" : ' + ((!obj.hausnummer) ? 'null' : '"' + obj.hausnummer.valueOf() + '"') + ',';
  109. }
  110. if (typeof obj.hausnummerZusatz !== "undefined") {
  111. result += '"hausnummerZusatz" : ' + ((!obj.hausnummerZusatz) ? 'null' : '"' + obj.hausnummerZusatz.valueOf() + '"') + ',';
  112. }
  113. if (typeof obj.wohnortID !== "undefined") {
  114. result += '"wohnortID" : ' + ((!obj.wohnortID) ? 'null' : obj.wohnortID.valueOf()) + ',';
  115. }
  116. if (typeof obj.ortsteilID !== "undefined") {
  117. result += '"ortsteilID" : ' + ((!obj.ortsteilID) ? 'null' : obj.ortsteilID.valueOf()) + ',';
  118. }
  119. if (typeof obj.erhaeltAnschreiben !== "undefined") {
  120. result += '"erhaeltAnschreiben" : ' + ((!obj.erhaeltAnschreiben) ? 'null' : obj.erhaeltAnschreiben.valueOf()) + ',';
  121. }
  122. if (typeof obj.eMail !== "undefined") {
  123. result += '"eMail" : ' + ((!obj.eMail) ? 'null' : '"' + obj.eMail.valueOf() + '"') + ',';
  124. }
  125. if (typeof obj.staatsangehoerigkeitID !== "undefined") {
  126. result += '"staatsangehoerigkeitID" : ' + ((!obj.staatsangehoerigkeitID) ? 'null' : '"' + obj.staatsangehoerigkeitID.valueOf() + '"') + ',';
  127. }
  128. if (typeof obj.bemerkungen !== "undefined") {
  129. result += '"bemerkungen" : ' + ((!obj.bemerkungen) ? 'null' : '"' + obj.bemerkungen.valueOf() + '"') + ',';
  130. }
  131. result = result.slice(0, -1);
  132. result += '}';
  133. return result;
  134. }
  135. }
  136. export function cast_de_nrw_schule_svws_core_data_erzieher_ErzieherStammdaten(obj : unknown) : ErzieherStammdaten {
  137. return obj as ErzieherStammdaten;
  138. }