Update auto-generated bindings to latest upstream
[ldk-java] / src / main / java / org / ldk / structs / Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.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 javax.annotation.Nullable;
8
9 public class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ extends CommonBase {
10         private Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
11         protected void finalize() throws Throwable {
12                 if (ptr != 0) { bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_free(ptr); } super.finalize();
13         }
14
15         static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ constr_from_ptr(long ptr) {
16                 if (bindings.LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_result_ok(ptr)) {
17                         return new Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(null, ptr);
18                 } else {
19                         return new Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(null, ptr);
20                 }
21         }
22         public static final class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK extends Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ {
23                 public final TwoTuple<byte[], ChannelMonitor> res;
24                 private Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(Object _dummy, long ptr) {
25                         super(_dummy, ptr);
26                         long res = bindings.LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_ok(ptr);
27                         byte[] res_a = bindings.LDKC2Tuple_BlockHashChannelMonitorZ_get_a(res);
28                         long res_b = bindings.LDKC2Tuple_BlockHashChannelMonitorZ_get_b(res);
29                         ChannelMonitor res_b_hu_conv = new ChannelMonitor(null, res_b);
30                         res_b_hu_conv.ptrs_to.add(this);;
31                         TwoTuple<byte[], ChannelMonitor> res_conv = new TwoTuple<byte[], ChannelMonitor>(res_a, res_b_hu_conv, () -> {
32                                 bindings.C2Tuple_BlockHashChannelMonitorZ_free(res);
33                         });
34                         res_b_hu_conv.ptrs_to.add(res_conv);
35                         this.res = res_conv;
36                 }
37         }
38
39         public static final class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err extends Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ {
40                 public final DecodeError err;
41                 private Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(Object _dummy, long ptr) {
42                         super(_dummy, ptr);
43                         long err = bindings.LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_err(ptr);
44                         DecodeError err_hu_conv = new DecodeError(null, err);
45                         err_hu_conv.ptrs_to.add(this);
46                         this.err = err_hu_conv;
47                 }
48         }
49
50         /**
51          * Creates a new CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ in the success state.
52          */
53         public static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ok(TwoTuple<byte[], ChannelMonitor> o) {
54                 long ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_ok(bindings.C2Tuple_BlockHashChannelMonitorZ_new(o.a, o.b == null ? 0 : o.b.ptr & ~1));
55                 if (ret < 1024) { return null; }
56                 Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ret_hu_conv = Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.constr_from_ptr(ret);
57                 ret_hu_conv.ptrs_to.add(o.b);
58                 return ret_hu_conv;
59         }
60
61         /**
62          * Creates a new CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ in the error state.
63          */
64         public static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ err(DecodeError e) {
65                 long ret = bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
66                 if (ret < 1024) { return null; }
67                 Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ ret_hu_conv = Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ.constr_from_ptr(ret);
68                 ret_hu_conv.ptrs_to.add(e);
69                 return ret_hu_conv;
70         }
71
72 }