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 static Result_TxCompleteDecodeErrorZ constr_from_ptr(long ptr) {
17 if (bindings.CResult_TxCompleteDecodeErrorZ_is_ok(ptr)) {
18 return new Result_TxCompleteDecodeErrorZ_OK(null, ptr);
20 return new Result_TxCompleteDecodeErrorZ_Err(null, ptr);
23 public static final class Result_TxCompleteDecodeErrorZ_OK extends Result_TxCompleteDecodeErrorZ {
24 public final TxComplete res;
25 private Result_TxCompleteDecodeErrorZ_OK(Object _dummy, long ptr) {
27 long res = bindings.CResult_TxCompleteDecodeErrorZ_get_ok(ptr);
28 org.ldk.structs.TxComplete res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.TxComplete(null, res); }
29 if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
30 this.res = res_hu_conv;
34 public static final class Result_TxCompleteDecodeErrorZ_Err extends Result_TxCompleteDecodeErrorZ {
35 public final DecodeError err;
36 private Result_TxCompleteDecodeErrorZ_Err(Object _dummy, long ptr) {
38 long err = bindings.CResult_TxCompleteDecodeErrorZ_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;
46 * Creates a new CResult_TxCompleteDecodeErrorZ in the success state.
48 public static Result_TxCompleteDecodeErrorZ ok(org.ldk.structs.TxComplete o) {
49 long ret = bindings.CResult_TxCompleteDecodeErrorZ_ok(o == null ? 0 : o.ptr);
50 Reference.reachabilityFence(o);
51 if (ret >= 0 && ret <= 4096) { return null; }
52 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);
53 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
58 * Creates a new CResult_TxCompleteDecodeErrorZ in the error state.
60 public static Result_TxCompleteDecodeErrorZ err(org.ldk.structs.DecodeError e) {
61 long ret = bindings.CResult_TxCompleteDecodeErrorZ_err(e.ptr);
62 Reference.reachabilityFence(e);
63 if (ret >= 0 && ret <= 4096) { return null; }
64 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);
65 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
70 * Checks if the given object is currently in the success state
72 public boolean is_ok() {
73 boolean ret = bindings.CResult_TxCompleteDecodeErrorZ_is_ok(this.ptr);
74 Reference.reachabilityFence(this);
79 long ret = bindings.CResult_TxCompleteDecodeErrorZ_clone_ptr(this.ptr);
80 Reference.reachabilityFence(this);
85 * Creates a new CResult_TxCompleteDecodeErrorZ which has the same data as `orig`
86 * but with all dynamically-allocated buffers duplicated in new buffers.
88 public Result_TxCompleteDecodeErrorZ clone() {
89 long ret = bindings.CResult_TxCompleteDecodeErrorZ_clone(this.ptr);
90 Reference.reachabilityFence(this);
91 if (ret >= 0 && ret <= 4096) { return null; }
92 Result_TxCompleteDecodeErrorZ ret_hu_conv = Result_TxCompleteDecodeErrorZ.constr_from_ptr(ret);