[Java] Print error stack trace when tests fail
[ldk-java] / src / main / java / org / ldk / structs / Result_NonePeerHandleErrorZ.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_NonePeerHandleErrorZ extends CommonBase {
11         private Result_NonePeerHandleErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_NonePeerHandleErrorZ_free(ptr); } super.finalize();
14         }
15
16         protected void force_free() {
17                 if (ptr != 0) { bindings.CResult_NonePeerHandleErrorZ_free(ptr); ptr = 0; }
18         }
19
20         static Result_NonePeerHandleErrorZ constr_from_ptr(long ptr) {
21                 if (bindings.CResult_NonePeerHandleErrorZ_is_ok(ptr)) {
22                         return new Result_NonePeerHandleErrorZ_OK(null, ptr);
23                 } else {
24                         return new Result_NonePeerHandleErrorZ_Err(null, ptr);
25                 }
26         }
27         public static final class Result_NonePeerHandleErrorZ_OK extends Result_NonePeerHandleErrorZ {
28                 private Result_NonePeerHandleErrorZ_OK(Object _dummy, long ptr) {
29                         super(_dummy, ptr);
30                 }
31         }
32
33         public static final class Result_NonePeerHandleErrorZ_Err extends Result_NonePeerHandleErrorZ {
34                 public final PeerHandleError err;
35                 private Result_NonePeerHandleErrorZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                         long err = bindings.CResult_NonePeerHandleErrorZ_get_err(ptr);
38                         org.ldk.structs.PeerHandleError err_hu_conv = null; if (err < 0 || err > 4096) { err_hu_conv = new org.ldk.structs.PeerHandleError(null, err); }
39                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
40                         this.err = err_hu_conv;
41                 }
42         }
43
44         /**
45          * Creates a new CResult_NonePeerHandleErrorZ in the success state.
46          */
47         public static Result_NonePeerHandleErrorZ ok() {
48                 long ret = bindings.CResult_NonePeerHandleErrorZ_ok();
49                 if (ret >= 0 && ret <= 4096) { return null; }
50                 Result_NonePeerHandleErrorZ ret_hu_conv = Result_NonePeerHandleErrorZ.constr_from_ptr(ret);
51                 return ret_hu_conv;
52         }
53
54         /**
55          * Creates a new CResult_NonePeerHandleErrorZ in the error state.
56          */
57         public static Result_NonePeerHandleErrorZ err(org.ldk.structs.PeerHandleError e) {
58                 long ret = bindings.CResult_NonePeerHandleErrorZ_err(e.ptr);
59                 Reference.reachabilityFence(e);
60                 if (ret >= 0 && ret <= 4096) { return null; }
61                 Result_NonePeerHandleErrorZ ret_hu_conv = Result_NonePeerHandleErrorZ.constr_from_ptr(ret);
62                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
63                 return ret_hu_conv;
64         }
65
66         /**
67          * Checks if the given object is currently in the success state
68          */
69         public boolean is_ok() {
70                 boolean ret = bindings.CResult_NonePeerHandleErrorZ_is_ok(this.ptr);
71                 Reference.reachabilityFence(this);
72                 return ret;
73         }
74
75         long clone_ptr() {
76                 long ret = bindings.CResult_NonePeerHandleErrorZ_clone_ptr(this.ptr);
77                 Reference.reachabilityFence(this);
78                 return ret;
79         }
80
81         /**
82          * Creates a new CResult_NonePeerHandleErrorZ which has the same data as `orig`
83          * but with all dynamically-allocated buffers duplicated in new buffers.
84          */
85         public Result_NonePeerHandleErrorZ clone() {
86                 long ret = bindings.CResult_NonePeerHandleErrorZ_clone(this.ptr);
87                 Reference.reachabilityFence(this);
88                 if (ret >= 0 && ret <= 4096) { return null; }
89                 Result_NonePeerHandleErrorZ ret_hu_conv = Result_NonePeerHandleErrorZ.constr_from_ptr(ret);
90                 return ret_hu_conv;
91         }
92
93 }