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_TxCreationKeysDecodeErrorZ extends CommonBase {
11 private Result_TxCreationKeysDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_TxCreationKeysDecodeErrorZ_free(ptr); } super.finalize();
16 static Result_TxCreationKeysDecodeErrorZ constr_from_ptr(long ptr) {
17 if (bindings.CResult_TxCreationKeysDecodeErrorZ_is_ok(ptr)) {
18 return new Result_TxCreationKeysDecodeErrorZ_OK(null, ptr);
20 return new Result_TxCreationKeysDecodeErrorZ_Err(null, ptr);
23 public static final class Result_TxCreationKeysDecodeErrorZ_OK extends Result_TxCreationKeysDecodeErrorZ {
24 public final TxCreationKeys res;
25 private Result_TxCreationKeysDecodeErrorZ_OK(Object _dummy, long ptr) {
27 long res = bindings.LDKCResult_TxCreationKeysDecodeErrorZ_get_ok(ptr);
28 TxCreationKeys res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new TxCreationKeys(null, res); }
29 res_hu_conv.ptrs_to.add(this);
30 this.res = res_hu_conv;
34 public static final class Result_TxCreationKeysDecodeErrorZ_Err extends Result_TxCreationKeysDecodeErrorZ {
35 public final DecodeError err;
36 private Result_TxCreationKeysDecodeErrorZ_Err(Object _dummy, long ptr) {
38 long err = bindings.LDKCResult_TxCreationKeysDecodeErrorZ_get_err(ptr);
39 DecodeError err_hu_conv = null; if (err < 0 || err > 4096) { err_hu_conv = new DecodeError(null, err); }
40 err_hu_conv.ptrs_to.add(this);
41 this.err = err_hu_conv;
46 * Creates a new CResult_TxCreationKeysDecodeErrorZ in the success state.
48 public static Result_TxCreationKeysDecodeErrorZ ok(TxCreationKeys o) {
49 long ret = bindings.CResult_TxCreationKeysDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
50 Reference.reachabilityFence(o);
51 if (ret >= 0 && ret <= 4096) { return null; }
52 Result_TxCreationKeysDecodeErrorZ ret_hu_conv = Result_TxCreationKeysDecodeErrorZ.constr_from_ptr(ret);
57 * Creates a new CResult_TxCreationKeysDecodeErrorZ in the error state.
59 public static Result_TxCreationKeysDecodeErrorZ err(DecodeError e) {
60 long ret = bindings.CResult_TxCreationKeysDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
61 Reference.reachabilityFence(e);
62 if (ret >= 0 && ret <= 4096) { return null; }
63 Result_TxCreationKeysDecodeErrorZ ret_hu_conv = Result_TxCreationKeysDecodeErrorZ.constr_from_ptr(ret);
68 * Checks if the given object is currently in the success state
70 public boolean is_ok() {
71 boolean ret = bindings.CResult_TxCreationKeysDecodeErrorZ_is_ok(this.ptr);
72 Reference.reachabilityFence(this);
77 long ret = bindings.CResult_TxCreationKeysDecodeErrorZ_clone_ptr(this.ptr);
78 Reference.reachabilityFence(this);
83 * Creates a new CResult_TxCreationKeysDecodeErrorZ which has the same data as `orig`
84 * but with all dynamically-allocated buffers duplicated in new buffers.
86 public Result_TxCreationKeysDecodeErrorZ clone() {
87 long ret = bindings.CResult_TxCreationKeysDecodeErrorZ_clone(this.ptr);
88 Reference.reachabilityFence(this);
89 if (ret >= 0 && ret <= 4096) { return null; }
90 Result_TxCreationKeysDecodeErrorZ ret_hu_conv = Result_TxCreationKeysDecodeErrorZ.constr_from_ptr(ret);