Erzieherart.ts 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. export class Erzieherart extends JavaObject {
  5. public id : Number | null = null;
  6. public bezeichnung : String | null = null;
  7. public constructor() {
  8. super();
  9. }
  10. isTranspiledInstanceOf(name : string): boolean {
  11. return ['de.nrw.schule.svws.core.data.erzieher.Erzieherart'].includes(name);
  12. }
  13. public static transpilerFromJSON(json : string): Erzieherart {
  14. const obj = JSON.parse(json);
  15. const result = new Erzieherart();
  16. result.id = typeof obj.id === "undefined" ? null : obj.id;
  17. result.bezeichnung = typeof obj.bezeichnung === "undefined" ? null : obj.bezeichnung;
  18. return result;
  19. }
  20. public static transpilerToJSON(obj : Erzieherart) : string {
  21. let result = '{';
  22. result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
  23. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  24. result = result.slice(0, -1);
  25. result += '}';
  26. return result;
  27. }
  28. public static transpilerToJSONPatch(obj : Partial<Erzieherart>) : string {
  29. let result = '{';
  30. if (typeof obj.id !== "undefined") {
  31. result += '"id" : ' + ((!obj.id) ? 'null' : obj.id.valueOf()) + ',';
  32. }
  33. if (typeof obj.bezeichnung !== "undefined") {
  34. result += '"bezeichnung" : ' + ((!obj.bezeichnung) ? 'null' : '"' + obj.bezeichnung.valueOf() + '"') + ',';
  35. }
  36. result = result.slice(0, -1);
  37. result += '}';
  38. return result;
  39. }
  40. }
  41. export function cast_de_nrw_schule_svws_core_data_erzieher_Erzieherart(obj : unknown) : Erzieherart {
  42. return obj as Erzieherart;
  43. }