1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
8 public class Result_NetworkGraphDecodeErrorZ extends CommonBase {
9 private Result_NetworkGraphDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
10 protected void finalize() throws Throwable {
11 if (ptr != 0) { bindings.CResult_NetworkGraphDecodeErrorZ_free(ptr); } super.finalize();
14 static Result_NetworkGraphDecodeErrorZ constr_from_ptr(long ptr) {
15 if (bindings.LDKCResult_NetworkGraphDecodeErrorZ_result_ok(ptr)) {
16 return new Result_NetworkGraphDecodeErrorZ_OK(null, ptr);
18 return new Result_NetworkGraphDecodeErrorZ_Err(null, ptr);
21 public static final class Result_NetworkGraphDecodeErrorZ_OK extends Result_NetworkGraphDecodeErrorZ {
22 public final NetworkGraph res;
23 private Result_NetworkGraphDecodeErrorZ_OK(Object _dummy, long ptr) {
25 long res = bindings.LDKCResult_NetworkGraphDecodeErrorZ_get_ok(ptr);
26 NetworkGraph res_hu_conv = new NetworkGraph(null, res);
27 res_hu_conv.ptrs_to.add(this);
28 this.res = res_hu_conv;
32 public static final class Result_NetworkGraphDecodeErrorZ_Err extends Result_NetworkGraphDecodeErrorZ {
33 public final DecodeError err;
34 private Result_NetworkGraphDecodeErrorZ_Err(Object _dummy, long ptr) {
36 long err = bindings.LDKCResult_NetworkGraphDecodeErrorZ_get_err(ptr);
37 DecodeError err_hu_conv = new DecodeError(null, err);
38 err_hu_conv.ptrs_to.add(this);
39 this.err = err_hu_conv;
44 * Creates a new CResult_NetworkGraphDecodeErrorZ in the success state.
46 public static Result_NetworkGraphDecodeErrorZ constructor_ok(NetworkGraph o) {
47 long ret = bindings.CResult_NetworkGraphDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
48 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
49 ret_hu_conv.ptrs_to.add(o);
54 * Creates a new CResult_NetworkGraphDecodeErrorZ in the error state.
56 public static Result_NetworkGraphDecodeErrorZ constructor_err(DecodeError e) {
57 long ret = bindings.CResult_NetworkGraphDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
58 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
59 ret_hu_conv.ptrs_to.add(e);
64 * Creates a new CResult_NetworkGraphDecodeErrorZ which has the same data as `orig`
65 * but with all dynamically-allocated buffers duplicated in new buffers.
67 public Result_NetworkGraphDecodeErrorZ clone() {
68 long ret = bindings.CResult_NetworkGraphDecodeErrorZ_clone(this.ptr);
69 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);