1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class Result_TxCreationKeysSecpErrorZ extends CommonBase {
10 private Result_TxCreationKeysSecpErrorZ(Object _dummy, long ptr) { super(ptr); }
11 protected void finalize() throws Throwable {
12 if (ptr != 0) { bindings.CResult_TxCreationKeysSecpErrorZ_free(ptr); } super.finalize();
15 static Result_TxCreationKeysSecpErrorZ constr_from_ptr(long ptr) {
16 if (bindings.LDKCResult_TxCreationKeysSecpErrorZ_result_ok(ptr)) {
17 return new Result_TxCreationKeysSecpErrorZ_OK(null, ptr);
19 return new Result_TxCreationKeysSecpErrorZ_Err(null, ptr);
22 public static final class Result_TxCreationKeysSecpErrorZ_OK extends Result_TxCreationKeysSecpErrorZ {
23 public final TxCreationKeys res;
24 private Result_TxCreationKeysSecpErrorZ_OK(Object _dummy, long ptr) {
26 long res = bindings.LDKCResult_TxCreationKeysSecpErrorZ_get_ok(ptr);
27 TxCreationKeys res_hu_conv = new TxCreationKeys(null, res);
28 this.res = res_hu_conv;
30 public Result_TxCreationKeysSecpErrorZ_OK(TxCreationKeys res) {
31 this(null, bindings.CResult_TxCreationKeysSecpErrorZ_ok(res == null ? 0 : res.ptr & ~1));
32 this.ptrs_to.add(res);
36 public static final class Result_TxCreationKeysSecpErrorZ_Err extends Result_TxCreationKeysSecpErrorZ {
37 public final LDKSecp256k1Error err;
38 private Result_TxCreationKeysSecpErrorZ_Err(Object _dummy, long ptr) {
40 this.err = bindings.LDKCResult_TxCreationKeysSecpErrorZ_get_err(ptr);
42 public Result_TxCreationKeysSecpErrorZ_Err(LDKSecp256k1Error err) {
43 this(null, bindings.CResult_TxCreationKeysSecpErrorZ_err(err));