957c031f6316d02886676dc41590856b5eee98d4
[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
8 public class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ extends CommonBase {
9         private Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
10         protected void finalize() throws Throwable {
11                 if (ptr != 0) { bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_free(ptr); } super.finalize();
12         }
13
14         static Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ constr_from_ptr(long ptr) {
15                 if (bindings.LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_result_ok(ptr)) {
16                         return new Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(null, ptr);
17                 } else {
18                         return new Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(null, ptr);
19                 }
20         }
21         public static final class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK extends Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ {
22                 public final TwoTuple<byte[], ChannelMonitor> res;
23                 private Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(Object _dummy, long ptr) {
24                         super(_dummy, ptr);
25                         long res = bindings.LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_ok(ptr);
26                         byte[] res_a = bindings.LDKC2Tuple_BlockHashChannelMonitorZ_get_a(res);
27                         long res_b = bindings.LDKC2Tuple_BlockHashChannelMonitorZ_get_b(res);
28                         ChannelMonitor res_b_hu_conv = new ChannelMonitor(null, res_b);
29                         res_b_hu_conv.ptrs_to.add(this);;
30                         TwoTuple<byte[], ChannelMonitor> res_conv = new TwoTuple<byte[], ChannelMonitor>(res_a, res_b_hu_conv, () -> {
31                                 bindings.C2Tuple_BlockHashChannelMonitorZ_free(res);
32                         });
33                         res_b_hu_conv.ptrs_to.add(res_conv);
34                         this.res = res_conv;
35                 }
36                 public Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_OK(TwoTuple<byte[], ChannelMonitor> res) {
37                         this(null, bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_ok(bindings.C2Tuple_BlockHashChannelMonitorZ_new(res.a, res.b == null ? 0 : res.b.ptr & ~1)));
38                         this.ptrs_to.add(res.b);
39                 }
40         }
41
42         public static final class Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err extends Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ {
43                 public final DecodeError err;
44                 private Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(Object _dummy, long ptr) {
45                         super(_dummy, ptr);
46                         long err = bindings.LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_err(ptr);
47                         DecodeError err_hu_conv = new DecodeError(null, err);
48                         err_hu_conv.ptrs_to.add(this);
49                         this.err = err_hu_conv;
50                 }
51                 public Result_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_Err(DecodeError err) {
52                         this(null, bindings.CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1));
53                         this.ptrs_to.add(err);
54                 }
55         }
56 }