38ea424b8e3629251df05a6a5dd2814a442186de
[ldk-java] / c_sharp / src / org / ldk / structs / Result_u32GraphSyncErrorZ.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8 public class Result_u32GraphSyncErrorZ : CommonBase {
9         Result_u32GraphSyncErrorZ(object _dummy, long ptr) : base(ptr) { }
10         ~Result_u32GraphSyncErrorZ() {
11                 if (ptr != 0) { bindings.CResult_u32GraphSyncErrorZ_free(ptr); }
12         }
13
14         internal static Result_u32GraphSyncErrorZ constr_from_ptr(long ptr) {
15                 if (bindings.CResult_u32GraphSyncErrorZ_is_ok(ptr)) {
16                         return new Result_u32GraphSyncErrorZ_OK(null, ptr);
17                 } else {
18                         return new Result_u32GraphSyncErrorZ_Err(null, ptr);
19                 }
20         }
21         public class Result_u32GraphSyncErrorZ_OK : Result_u32GraphSyncErrorZ {
22                 public readonly int res;
23                 internal Result_u32GraphSyncErrorZ_OK(object _dummy, long ptr) : base(_dummy, ptr) {
24                         this.res = bindings.CResult_u32GraphSyncErrorZ_get_ok(ptr);
25                 }
26         }
27
28         public class Result_u32GraphSyncErrorZ_Err : Result_u32GraphSyncErrorZ {
29                 public readonly GraphSyncError err;
30                 internal Result_u32GraphSyncErrorZ_Err(object _dummy, long ptr) : base(_dummy, ptr) {
31                         long err = bindings.CResult_u32GraphSyncErrorZ_get_err(ptr);
32                         org.ldk.structs.GraphSyncError err_hu_conv = org.ldk.structs.GraphSyncError.constr_from_ptr(err);
33                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.AddLast(this); };
34                         this.err = err_hu_conv;
35                 }
36         }
37
38         /**
39          * Creates a new CResult_u32GraphSyncErrorZ in the success state.
40          */
41         public static Result_u32GraphSyncErrorZ ok(int o) {
42                 long ret = bindings.CResult_u32GraphSyncErrorZ_ok(o);
43                 GC.KeepAlive(o);
44                 if (ret >= 0 && ret <= 4096) { return null; }
45                 Result_u32GraphSyncErrorZ ret_hu_conv = Result_u32GraphSyncErrorZ.constr_from_ptr(ret);
46                 return ret_hu_conv;
47         }
48
49         /**
50          * Creates a new CResult_u32GraphSyncErrorZ in the error state.
51          */
52         public static Result_u32GraphSyncErrorZ err(org.ldk.structs.GraphSyncError e) {
53                 long ret = bindings.CResult_u32GraphSyncErrorZ_err(e.ptr);
54                 GC.KeepAlive(e);
55                 if (ret >= 0 && ret <= 4096) { return null; }
56                 Result_u32GraphSyncErrorZ ret_hu_conv = Result_u32GraphSyncErrorZ.constr_from_ptr(ret);
57                 return ret_hu_conv;
58         }
59
60         /**
61          * Checks if the given object is currently in the success state
62          */
63         public bool is_ok() {
64                 bool ret = bindings.CResult_u32GraphSyncErrorZ_is_ok(this.ptr);
65                 GC.KeepAlive(this);
66                 return ret;
67         }
68
69 }
70 } } }