87451a609859a5528e01b4a65ff589b4758eca73
[ldk-java] / src / main / java / org / ldk / structs / Result_NetworkGraphDecodeErrorZ.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10 public class Result_NetworkGraphDecodeErrorZ extends CommonBase {
11         private Result_NetworkGraphDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_NetworkGraphDecodeErrorZ_free(ptr); } super.finalize();
14         }
15
16         static Result_NetworkGraphDecodeErrorZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_NetworkGraphDecodeErrorZ_is_ok(ptr)) {
18                         return new Result_NetworkGraphDecodeErrorZ_OK(null, ptr);
19                 } else {
20                         return new Result_NetworkGraphDecodeErrorZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_NetworkGraphDecodeErrorZ_OK extends Result_NetworkGraphDecodeErrorZ {
24                 public final NetworkGraph res;
25                 private Result_NetworkGraphDecodeErrorZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.CResult_NetworkGraphDecodeErrorZ_get_ok(ptr);
28                         org.ldk.structs.NetworkGraph res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.NetworkGraph(null, res); }
29                         if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
30                         this.res = res_hu_conv;
31                 }
32         }
33
34         public static final class Result_NetworkGraphDecodeErrorZ_Err extends Result_NetworkGraphDecodeErrorZ {
35                 public final DecodeError err;
36                 private Result_NetworkGraphDecodeErrorZ_Err(Object _dummy, long ptr) {
37                         super(_dummy, ptr);
38                         long err = bindings.CResult_NetworkGraphDecodeErrorZ_get_err(ptr);
39                         org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
40                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
41                         this.err = err_hu_conv;
42                 }
43         }
44
45         /**
46          * Creates a new CResult_NetworkGraphDecodeErrorZ in the success state.
47          */
48         public static Result_NetworkGraphDecodeErrorZ ok(byte[] o_genesis_hash, Logger o_logger) {
49                 long ret = bindings.CResult_NetworkGraphDecodeErrorZ_ok(bindings.NetworkGraph_new(InternalUtils.check_arr_len(o_genesis_hash, 32), o_logger == null ? 0 : o_logger.ptr));
50                 Reference.reachabilityFence(o_genesis_hash);
51                 Reference.reachabilityFence(o_logger);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
54                 ;
55                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o_logger); };
56                 return ret_hu_conv;
57         }
58
59         /**
60          * Creates a new CResult_NetworkGraphDecodeErrorZ in the error state.
61          */
62         public static Result_NetworkGraphDecodeErrorZ err(org.ldk.structs.DecodeError e) {
63                 long ret = bindings.CResult_NetworkGraphDecodeErrorZ_err(e.ptr);
64                 Reference.reachabilityFence(e);
65                 if (ret >= 0 && ret <= 4096) { return null; }
66                 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
67                 return ret_hu_conv;
68         }
69
70         /**
71          * Checks if the given object is currently in the success state
72          */
73         public boolean is_ok() {
74                 boolean ret = bindings.CResult_NetworkGraphDecodeErrorZ_is_ok(this.ptr);
75                 Reference.reachabilityFence(this);
76                 return ret;
77         }
78
79 }