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_PaymentSecretAPIErrorZ extends CommonBase {
11 private Result_PaymentSecretAPIErrorZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_PaymentSecretAPIErrorZ_free(ptr); } super.finalize();
16 static Result_PaymentSecretAPIErrorZ constr_from_ptr(long ptr) {
17 if (bindings.CResult_PaymentSecretAPIErrorZ_is_ok(ptr)) {
18 return new Result_PaymentSecretAPIErrorZ_OK(null, ptr);
20 return new Result_PaymentSecretAPIErrorZ_Err(null, ptr);
23 public static final class Result_PaymentSecretAPIErrorZ_OK extends Result_PaymentSecretAPIErrorZ {
24 public final byte[] res;
25 private Result_PaymentSecretAPIErrorZ_OK(Object _dummy, long ptr) {
27 this.res = bindings.CResult_PaymentSecretAPIErrorZ_get_ok(ptr);
31 public static final class Result_PaymentSecretAPIErrorZ_Err extends Result_PaymentSecretAPIErrorZ {
32 public final APIError err;
33 private Result_PaymentSecretAPIErrorZ_Err(Object _dummy, long ptr) {
35 long err = bindings.CResult_PaymentSecretAPIErrorZ_get_err(ptr);
36 APIError err_hu_conv = APIError.constr_from_ptr(err);
37 err_hu_conv.ptrs_to.add(this);
38 this.err = err_hu_conv;
43 * Creates a new CResult_PaymentSecretAPIErrorZ in the success state.
45 public static Result_PaymentSecretAPIErrorZ ok(byte[] o) {
46 long ret = bindings.CResult_PaymentSecretAPIErrorZ_ok(InternalUtils.check_arr_len(o, 32));
47 Reference.reachabilityFence(o);
48 if (ret >= 0 && ret <= 4096) { return null; }
49 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);
54 * Creates a new CResult_PaymentSecretAPIErrorZ in the error state.
56 public static Result_PaymentSecretAPIErrorZ err(APIError e) {
57 long ret = bindings.CResult_PaymentSecretAPIErrorZ_err(e.ptr);
58 Reference.reachabilityFence(e);
59 if (ret >= 0 && ret <= 4096) { return null; }
60 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);
65 * Checks if the given object is currently in the success state
67 public boolean is_ok() {
68 boolean ret = bindings.CResult_PaymentSecretAPIErrorZ_is_ok(this.ptr);
69 Reference.reachabilityFence(this);
74 long ret = bindings.CResult_PaymentSecretAPIErrorZ_clone_ptr(this.ptr);
75 Reference.reachabilityFence(this);
80 * Creates a new CResult_PaymentSecretAPIErrorZ which has the same data as `orig`
81 * but with all dynamically-allocated buffers duplicated in new buffers.
83 public Result_PaymentSecretAPIErrorZ clone() {
84 long ret = bindings.CResult_PaymentSecretAPIErrorZ_clone(this.ptr);
85 Reference.reachabilityFence(this);
86 if (ret >= 0 && ret <= 4096) { return null; }
87 Result_PaymentSecretAPIErrorZ ret_hu_conv = Result_PaymentSecretAPIErrorZ.constr_from_ptr(ret);