1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
10 public class Result_TxCompleteDecodeErrorZ extends CommonBase {
11 private Result_TxCompleteDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_TxCompleteDecodeErrorZ_free(ptr); } super.finalize();
16 protected void force_free() {
17 if (ptr != 0) { bindings.CResult_TxCompleteDecodeErrorZ_free(ptr); ptr = 0; }
20 static Result_TxCompleteDecodeErrorZ constr_from_ptr(long ptr) {
21 if (bindings.CResult_TxCompleteDecodeErrorZ_is_ok(ptr)) {
22 return new Result_TxCompleteDecodeErrorZ_OK(null, ptr);
24 return new Result_TxCompleteDecodeErrorZ_Err(null, ptr);
27 public static final class Result_TxCompleteDecodeErrorZ_OK extends Result_TxCompleteDecodeErrorZ {
28 public final TxComplete res;
29 private Result_TxCompleteDecodeErrorZ_OK(Object _dummy, long ptr) {
31 long res = bindings.CResult_TxCompleteDecodeErrorZ_get_ok(ptr);
32 org.ldk.structs.TxComplete res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.TxComplete(null, res); }
33 if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
34 this.res = res_hu_conv;
38 public static final class Result_TxCompleteDecodeErrorZ_Err extends Result_TxCompleteDecodeErrorZ {
39 public final DecodeError err;
40 private Result_TxCompleteDecodeErrorZ_Err(Object _dummy, long ptr) {
42 long err = bindings.CResult_TxCompleteDecodeErrorZ_get_err(ptr);
43 org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
44 if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
45 this.err = err_hu_conv;
50 * Creates a new CResult_TxCompleteDecodeErrorZ in the success state.
52 public static Result_TxCompleteDecodeErrorZ ok(org.ldk.structs.TxComplete o) {
53 long ret = bindings.CResult_TxCompleteDecodeErrorZ_ok(o.ptr);
54 Reference.reachabilityFence(o);
55 if (ret >= 0 && ret <= 4096) { return null; }
56 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);
57 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
62 * Creates a new CResult_TxCompleteDecodeErrorZ in the error state.
64 public static Result_TxCompleteDecodeErrorZ err(org.ldk.structs.DecodeError e) {
65 long ret = bindings.CResult_TxCompleteDecodeErrorZ_err(e.ptr);
66 Reference.reachabilityFence(e);
67 if (ret >= 0 && ret <= 4096) { return null; }
68 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);
69 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
74 * Checks if the given object is currently in the success state
76 public boolean is_ok() {
77 boolean ret = bindings.CResult_TxCompleteDecodeErrorZ_is_ok(this.ptr);
78 Reference.reachabilityFence(this);
83 long ret = bindings.CResult_TxCompleteDecodeErrorZ_clone_ptr(this.ptr);
84 Reference.reachabilityFence(this);
89 * Creates a new CResult_TxCompleteDecodeErrorZ which has the same data as `orig`
90 * but with all dynamically-allocated buffers duplicated in new buffers.
92 public Result_TxCompleteDecodeErrorZ clone() {
93 long ret = bindings.CResult_TxCompleteDecodeErrorZ_clone(this.ptr);
94 Reference.reachabilityFence(this);
95 if (ret >= 0 && ret <= 4096) { return null; }
96 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);