SchuelerSchulbesuchsdaten.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
  2. import { JavaInteger, cast_java_lang_Integer } from '../../../java/lang/JavaInteger';
  3. import { SchuelerSchulbesuchSchule, cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchSchule } from '../../../core/data/schueler/SchuelerSchulbesuchSchule';
  4. import { SchuelerSchulbesuchMerkmal, cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchMerkmal } from '../../../core/data/schueler/SchuelerSchulbesuchMerkmal';
  5. import { JavaLong, cast_java_lang_Long } from '../../../java/lang/JavaLong';
  6. import { JavaString, cast_java_lang_String } from '../../../java/lang/JavaString';
  7. import { JavaBoolean, cast_java_lang_Boolean } from '../../../java/lang/JavaBoolean';
  8. import { Vector, cast_java_util_Vector } from '../../../java/util/Vector';
  9. export class SchuelerSchulbesuchsdaten extends JavaObject {
  10. public id : number = 0;
  11. public vorigeSchulnummer : String | null = null;
  12. public vorigeAllgHerkunft : String | null = null;
  13. public vorigeEntlassdatum : String | null = null;
  14. public vorigeEntlassjahrgang : String | null = null;
  15. public vorigeArtLetzteVersetzung : String | null = null;
  16. public vorigeBemerkung : String | null = null;
  17. public vorigeEntlassgrundID : Number | null = null;
  18. public vorigeAbschlussartID : String | null = null;
  19. public entlassungDatum : String | null = null;
  20. public entlassungJahrgang : String | null = null;
  21. public entlassungGrundID : Number | null = null;
  22. public entlassungAbschlussartID : String | null = null;
  23. public aufnehmdendSchulnummer : String | null = null;
  24. public aufnehmdendWechseldatum : String | null = null;
  25. public aufnehmdendBestaetigt : Boolean | null = null;
  26. public grundschuleEinschulungsjahr : Number | null = null;
  27. public grundschuleEinschulungsartID : Number | null = null;
  28. public grundschuleJahreEingangsphase : Number | null = null;
  29. public grundschuleUebergangsempfehlungID : Number | null = null;
  30. public sekIWechsel : Number | null = null;
  31. public sekIErsteSchulform : String | null = null;
  32. public sekIIWechsel : Number | null = null;
  33. public merkmale : Vector<SchuelerSchulbesuchMerkmal> = new Vector();
  34. public alleSchulen : Vector<SchuelerSchulbesuchSchule> = new Vector();
  35. public constructor() {
  36. super();
  37. }
  38. isTranspiledInstanceOf(name : string): boolean {
  39. return ['de.nrw.schule.svws.core.data.schueler.SchuelerSchulbesuchsdaten'].includes(name);
  40. }
  41. public static transpilerFromJSON(json : string): SchuelerSchulbesuchsdaten {
  42. const obj = JSON.parse(json);
  43. const result = new SchuelerSchulbesuchsdaten();
  44. if (typeof obj.id === "undefined")
  45. throw new Error('invalid json format, missing attribute id');
  46. result.id = obj.id;
  47. result.vorigeSchulnummer = typeof obj.vorigeSchulnummer === "undefined" ? null : obj.vorigeSchulnummer;
  48. result.vorigeAllgHerkunft = typeof obj.vorigeAllgHerkunft === "undefined" ? null : obj.vorigeAllgHerkunft;
  49. result.vorigeEntlassdatum = typeof obj.vorigeEntlassdatum === "undefined" ? null : obj.vorigeEntlassdatum;
  50. result.vorigeEntlassjahrgang = typeof obj.vorigeEntlassjahrgang === "undefined" ? null : obj.vorigeEntlassjahrgang;
  51. result.vorigeArtLetzteVersetzung = typeof obj.vorigeArtLetzteVersetzung === "undefined" ? null : obj.vorigeArtLetzteVersetzung;
  52. result.vorigeBemerkung = typeof obj.vorigeBemerkung === "undefined" ? null : obj.vorigeBemerkung;
  53. result.vorigeEntlassgrundID = typeof obj.vorigeEntlassgrundID === "undefined" ? null : obj.vorigeEntlassgrundID;
  54. result.vorigeAbschlussartID = typeof obj.vorigeAbschlussartID === "undefined" ? null : obj.vorigeAbschlussartID;
  55. result.entlassungDatum = typeof obj.entlassungDatum === "undefined" ? null : obj.entlassungDatum;
  56. result.entlassungJahrgang = typeof obj.entlassungJahrgang === "undefined" ? null : obj.entlassungJahrgang;
  57. result.entlassungGrundID = typeof obj.entlassungGrundID === "undefined" ? null : obj.entlassungGrundID;
  58. result.entlassungAbschlussartID = typeof obj.entlassungAbschlussartID === "undefined" ? null : obj.entlassungAbschlussartID;
  59. result.aufnehmdendSchulnummer = typeof obj.aufnehmdendSchulnummer === "undefined" ? null : obj.aufnehmdendSchulnummer;
  60. result.aufnehmdendWechseldatum = typeof obj.aufnehmdendWechseldatum === "undefined" ? null : obj.aufnehmdendWechseldatum;
  61. result.aufnehmdendBestaetigt = typeof obj.aufnehmdendBestaetigt === "undefined" ? null : obj.aufnehmdendBestaetigt;
  62. result.grundschuleEinschulungsjahr = typeof obj.grundschuleEinschulungsjahr === "undefined" ? null : obj.grundschuleEinschulungsjahr;
  63. result.grundschuleEinschulungsartID = typeof obj.grundschuleEinschulungsartID === "undefined" ? null : obj.grundschuleEinschulungsartID;
  64. result.grundschuleJahreEingangsphase = typeof obj.grundschuleJahreEingangsphase === "undefined" ? null : obj.grundschuleJahreEingangsphase;
  65. result.grundschuleUebergangsempfehlungID = typeof obj.grundschuleUebergangsempfehlungID === "undefined" ? null : obj.grundschuleUebergangsempfehlungID;
  66. result.sekIWechsel = typeof obj.sekIWechsel === "undefined" ? null : obj.sekIWechsel;
  67. result.sekIErsteSchulform = typeof obj.sekIErsteSchulform === "undefined" ? null : obj.sekIErsteSchulform;
  68. result.sekIIWechsel = typeof obj.sekIIWechsel === "undefined" ? null : obj.sekIIWechsel;
  69. if (!!obj.merkmale) {
  70. for (let elem of obj.merkmale) {
  71. result.merkmale?.add(SchuelerSchulbesuchMerkmal.transpilerFromJSON(JSON.stringify(elem)));
  72. }
  73. }
  74. if (!!obj.alleSchulen) {
  75. for (let elem of obj.alleSchulen) {
  76. result.alleSchulen?.add(SchuelerSchulbesuchSchule.transpilerFromJSON(JSON.stringify(elem)));
  77. }
  78. }
  79. return result;
  80. }
  81. public static transpilerToJSON(obj : SchuelerSchulbesuchsdaten) : string {
  82. let result = '{';
  83. result += '"id" : ' + obj.id + ',';
  84. result += '"vorigeSchulnummer" : ' + ((!obj.vorigeSchulnummer) ? 'null' : '"' + obj.vorigeSchulnummer.valueOf() + '"') + ',';
  85. result += '"vorigeAllgHerkunft" : ' + ((!obj.vorigeAllgHerkunft) ? 'null' : '"' + obj.vorigeAllgHerkunft.valueOf() + '"') + ',';
  86. result += '"vorigeEntlassdatum" : ' + ((!obj.vorigeEntlassdatum) ? 'null' : '"' + obj.vorigeEntlassdatum.valueOf() + '"') + ',';
  87. result += '"vorigeEntlassjahrgang" : ' + ((!obj.vorigeEntlassjahrgang) ? 'null' : '"' + obj.vorigeEntlassjahrgang.valueOf() + '"') + ',';
  88. result += '"vorigeArtLetzteVersetzung" : ' + ((!obj.vorigeArtLetzteVersetzung) ? 'null' : '"' + obj.vorigeArtLetzteVersetzung.valueOf() + '"') + ',';
  89. result += '"vorigeBemerkung" : ' + ((!obj.vorigeBemerkung) ? 'null' : '"' + obj.vorigeBemerkung.valueOf() + '"') + ',';
  90. result += '"vorigeEntlassgrundID" : ' + ((!obj.vorigeEntlassgrundID) ? 'null' : obj.vorigeEntlassgrundID.valueOf()) + ',';
  91. result += '"vorigeAbschlussartID" : ' + ((!obj.vorigeAbschlussartID) ? 'null' : '"' + obj.vorigeAbschlussartID.valueOf() + '"') + ',';
  92. result += '"entlassungDatum" : ' + ((!obj.entlassungDatum) ? 'null' : '"' + obj.entlassungDatum.valueOf() + '"') + ',';
  93. result += '"entlassungJahrgang" : ' + ((!obj.entlassungJahrgang) ? 'null' : '"' + obj.entlassungJahrgang.valueOf() + '"') + ',';
  94. result += '"entlassungGrundID" : ' + ((!obj.entlassungGrundID) ? 'null' : obj.entlassungGrundID.valueOf()) + ',';
  95. result += '"entlassungAbschlussartID" : ' + ((!obj.entlassungAbschlussartID) ? 'null' : '"' + obj.entlassungAbschlussartID.valueOf() + '"') + ',';
  96. result += '"aufnehmdendSchulnummer" : ' + ((!obj.aufnehmdendSchulnummer) ? 'null' : '"' + obj.aufnehmdendSchulnummer.valueOf() + '"') + ',';
  97. result += '"aufnehmdendWechseldatum" : ' + ((!obj.aufnehmdendWechseldatum) ? 'null' : '"' + obj.aufnehmdendWechseldatum.valueOf() + '"') + ',';
  98. result += '"aufnehmdendBestaetigt" : ' + ((!obj.aufnehmdendBestaetigt) ? 'null' : obj.aufnehmdendBestaetigt.valueOf()) + ',';
  99. result += '"grundschuleEinschulungsjahr" : ' + ((!obj.grundschuleEinschulungsjahr) ? 'null' : obj.grundschuleEinschulungsjahr.valueOf()) + ',';
  100. result += '"grundschuleEinschulungsartID" : ' + ((!obj.grundschuleEinschulungsartID) ? 'null' : obj.grundschuleEinschulungsartID.valueOf()) + ',';
  101. result += '"grundschuleJahreEingangsphase" : ' + ((!obj.grundschuleJahreEingangsphase) ? 'null' : obj.grundschuleJahreEingangsphase.valueOf()) + ',';
  102. result += '"grundschuleUebergangsempfehlungID" : ' + ((!obj.grundschuleUebergangsempfehlungID) ? 'null' : obj.grundschuleUebergangsempfehlungID.valueOf()) + ',';
  103. result += '"sekIWechsel" : ' + ((!obj.sekIWechsel) ? 'null' : obj.sekIWechsel.valueOf()) + ',';
  104. result += '"sekIErsteSchulform" : ' + ((!obj.sekIErsteSchulform) ? 'null' : '"' + obj.sekIErsteSchulform.valueOf() + '"') + ',';
  105. result += '"sekIIWechsel" : ' + ((!obj.sekIIWechsel) ? 'null' : obj.sekIIWechsel.valueOf()) + ',';
  106. if (!obj.merkmale) {
  107. result += '[]';
  108. } else {
  109. result += '[ ';
  110. for (let i : number = 0; i < obj.merkmale.size(); i++) {
  111. let elem = obj.merkmale.get(i);
  112. result += SchuelerSchulbesuchMerkmal.transpilerToJSON(elem);
  113. if (i < obj.merkmale.size() - 1)
  114. result += ',';
  115. }
  116. result += ' ]' + ',';
  117. }
  118. if (!obj.alleSchulen) {
  119. result += '[]';
  120. } else {
  121. result += '[ ';
  122. for (let i : number = 0; i < obj.alleSchulen.size(); i++) {
  123. let elem = obj.alleSchulen.get(i);
  124. result += SchuelerSchulbesuchSchule.transpilerToJSON(elem);
  125. if (i < obj.alleSchulen.size() - 1)
  126. result += ',';
  127. }
  128. result += ' ]' + ',';
  129. }
  130. result = result.slice(0, -1);
  131. result += '}';
  132. return result;
  133. }
  134. public static transpilerToJSONPatch(obj : Partial<SchuelerSchulbesuchsdaten>) : string {
  135. let result = '{';
  136. if (typeof obj.id !== "undefined") {
  137. result += '"id" : ' + obj.id + ',';
  138. }
  139. if (typeof obj.vorigeSchulnummer !== "undefined") {
  140. result += '"vorigeSchulnummer" : ' + ((!obj.vorigeSchulnummer) ? 'null' : '"' + obj.vorigeSchulnummer.valueOf() + '"') + ',';
  141. }
  142. if (typeof obj.vorigeAllgHerkunft !== "undefined") {
  143. result += '"vorigeAllgHerkunft" : ' + ((!obj.vorigeAllgHerkunft) ? 'null' : '"' + obj.vorigeAllgHerkunft.valueOf() + '"') + ',';
  144. }
  145. if (typeof obj.vorigeEntlassdatum !== "undefined") {
  146. result += '"vorigeEntlassdatum" : ' + ((!obj.vorigeEntlassdatum) ? 'null' : '"' + obj.vorigeEntlassdatum.valueOf() + '"') + ',';
  147. }
  148. if (typeof obj.vorigeEntlassjahrgang !== "undefined") {
  149. result += '"vorigeEntlassjahrgang" : ' + ((!obj.vorigeEntlassjahrgang) ? 'null' : '"' + obj.vorigeEntlassjahrgang.valueOf() + '"') + ',';
  150. }
  151. if (typeof obj.vorigeArtLetzteVersetzung !== "undefined") {
  152. result += '"vorigeArtLetzteVersetzung" : ' + ((!obj.vorigeArtLetzteVersetzung) ? 'null' : '"' + obj.vorigeArtLetzteVersetzung.valueOf() + '"') + ',';
  153. }
  154. if (typeof obj.vorigeBemerkung !== "undefined") {
  155. result += '"vorigeBemerkung" : ' + ((!obj.vorigeBemerkung) ? 'null' : '"' + obj.vorigeBemerkung.valueOf() + '"') + ',';
  156. }
  157. if (typeof obj.vorigeEntlassgrundID !== "undefined") {
  158. result += '"vorigeEntlassgrundID" : ' + ((!obj.vorigeEntlassgrundID) ? 'null' : obj.vorigeEntlassgrundID.valueOf()) + ',';
  159. }
  160. if (typeof obj.vorigeAbschlussartID !== "undefined") {
  161. result += '"vorigeAbschlussartID" : ' + ((!obj.vorigeAbschlussartID) ? 'null' : '"' + obj.vorigeAbschlussartID.valueOf() + '"') + ',';
  162. }
  163. if (typeof obj.entlassungDatum !== "undefined") {
  164. result += '"entlassungDatum" : ' + ((!obj.entlassungDatum) ? 'null' : '"' + obj.entlassungDatum.valueOf() + '"') + ',';
  165. }
  166. if (typeof obj.entlassungJahrgang !== "undefined") {
  167. result += '"entlassungJahrgang" : ' + ((!obj.entlassungJahrgang) ? 'null' : '"' + obj.entlassungJahrgang.valueOf() + '"') + ',';
  168. }
  169. if (typeof obj.entlassungGrundID !== "undefined") {
  170. result += '"entlassungGrundID" : ' + ((!obj.entlassungGrundID) ? 'null' : obj.entlassungGrundID.valueOf()) + ',';
  171. }
  172. if (typeof obj.entlassungAbschlussartID !== "undefined") {
  173. result += '"entlassungAbschlussartID" : ' + ((!obj.entlassungAbschlussartID) ? 'null' : '"' + obj.entlassungAbschlussartID.valueOf() + '"') + ',';
  174. }
  175. if (typeof obj.aufnehmdendSchulnummer !== "undefined") {
  176. result += '"aufnehmdendSchulnummer" : ' + ((!obj.aufnehmdendSchulnummer) ? 'null' : '"' + obj.aufnehmdendSchulnummer.valueOf() + '"') + ',';
  177. }
  178. if (typeof obj.aufnehmdendWechseldatum !== "undefined") {
  179. result += '"aufnehmdendWechseldatum" : ' + ((!obj.aufnehmdendWechseldatum) ? 'null' : '"' + obj.aufnehmdendWechseldatum.valueOf() + '"') + ',';
  180. }
  181. if (typeof obj.aufnehmdendBestaetigt !== "undefined") {
  182. result += '"aufnehmdendBestaetigt" : ' + ((!obj.aufnehmdendBestaetigt) ? 'null' : obj.aufnehmdendBestaetigt.valueOf()) + ',';
  183. }
  184. if (typeof obj.grundschuleEinschulungsjahr !== "undefined") {
  185. result += '"grundschuleEinschulungsjahr" : ' + ((!obj.grundschuleEinschulungsjahr) ? 'null' : obj.grundschuleEinschulungsjahr.valueOf()) + ',';
  186. }
  187. if (typeof obj.grundschuleEinschulungsartID !== "undefined") {
  188. result += '"grundschuleEinschulungsartID" : ' + ((!obj.grundschuleEinschulungsartID) ? 'null' : obj.grundschuleEinschulungsartID.valueOf()) + ',';
  189. }
  190. if (typeof obj.grundschuleJahreEingangsphase !== "undefined") {
  191. result += '"grundschuleJahreEingangsphase" : ' + ((!obj.grundschuleJahreEingangsphase) ? 'null' : obj.grundschuleJahreEingangsphase.valueOf()) + ',';
  192. }
  193. if (typeof obj.grundschuleUebergangsempfehlungID !== "undefined") {
  194. result += '"grundschuleUebergangsempfehlungID" : ' + ((!obj.grundschuleUebergangsempfehlungID) ? 'null' : obj.grundschuleUebergangsempfehlungID.valueOf()) + ',';
  195. }
  196. if (typeof obj.sekIWechsel !== "undefined") {
  197. result += '"sekIWechsel" : ' + ((!obj.sekIWechsel) ? 'null' : obj.sekIWechsel.valueOf()) + ',';
  198. }
  199. if (typeof obj.sekIErsteSchulform !== "undefined") {
  200. result += '"sekIErsteSchulform" : ' + ((!obj.sekIErsteSchulform) ? 'null' : '"' + obj.sekIErsteSchulform.valueOf() + '"') + ',';
  201. }
  202. if (typeof obj.sekIIWechsel !== "undefined") {
  203. result += '"sekIIWechsel" : ' + ((!obj.sekIIWechsel) ? 'null' : obj.sekIIWechsel.valueOf()) + ',';
  204. }
  205. if (typeof obj.merkmale !== "undefined") {
  206. if (!obj.merkmale) {
  207. result += '[]';
  208. } else {
  209. result += '[ ';
  210. for (let i : number = 0; i < obj.merkmale.size(); i++) {
  211. let elem = obj.merkmale.get(i);
  212. result += SchuelerSchulbesuchMerkmal.transpilerToJSON(elem);
  213. if (i < obj.merkmale.size() - 1)
  214. result += ',';
  215. }
  216. result += ' ]' + ',';
  217. }
  218. }
  219. if (typeof obj.alleSchulen !== "undefined") {
  220. if (!obj.alleSchulen) {
  221. result += '[]';
  222. } else {
  223. result += '[ ';
  224. for (let i : number = 0; i < obj.alleSchulen.size(); i++) {
  225. let elem = obj.alleSchulen.get(i);
  226. result += SchuelerSchulbesuchSchule.transpilerToJSON(elem);
  227. if (i < obj.alleSchulen.size() - 1)
  228. result += ',';
  229. }
  230. result += ' ]' + ',';
  231. }
  232. }
  233. result = result.slice(0, -1);
  234. result += '}';
  235. return result;
  236. }
  237. }
  238. export function cast_de_nrw_schule_svws_core_data_schueler_SchuelerSchulbesuchsdaten(obj : unknown) : SchuelerSchulbesuchsdaten {
  239. return obj as SchuelerSchulbesuchsdaten;
  240. }