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_Bolt11InvoiceBolt11SemanticErrorZ extends CommonBase {
11 private Result_Bolt11InvoiceBolt11SemanticErrorZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_free(ptr); } super.finalize();
16 static Result_Bolt11InvoiceBolt11SemanticErrorZ constr_from_ptr(long ptr) {
17 if (bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_is_ok(ptr)) {
18 return new Result_Bolt11InvoiceBolt11SemanticErrorZ_OK(null, ptr);
20 return new Result_Bolt11InvoiceBolt11SemanticErrorZ_Err(null, ptr);
23 public static final class Result_Bolt11InvoiceBolt11SemanticErrorZ_OK extends Result_Bolt11InvoiceBolt11SemanticErrorZ {
24 public final Bolt11Invoice res;
25 private Result_Bolt11InvoiceBolt11SemanticErrorZ_OK(Object _dummy, long ptr) {
27 long res = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_get_ok(ptr);
28 org.ldk.structs.Bolt11Invoice res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.Bolt11Invoice(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_Bolt11InvoiceBolt11SemanticErrorZ_Err extends Result_Bolt11InvoiceBolt11SemanticErrorZ {
35 public final Bolt11SemanticError err;
36 private Result_Bolt11InvoiceBolt11SemanticErrorZ_Err(Object _dummy, long ptr) {
38 this.err = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_get_err(ptr);
43 * Creates a new CResult_Bolt11InvoiceBolt11SemanticErrorZ in the success state.
45 public static Result_Bolt11InvoiceBolt11SemanticErrorZ ok(org.ldk.structs.Bolt11Invoice o) {
46 long ret = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_ok(o == null ? 0 : o.ptr);
47 Reference.reachabilityFence(o);
48 if (ret >= 0 && ret <= 4096) { return null; }
49 Result_Bolt11InvoiceBolt11SemanticErrorZ ret_hu_conv = Result_Bolt11InvoiceBolt11SemanticErrorZ.constr_from_ptr(ret);
50 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
55 * Creates a new CResult_Bolt11InvoiceBolt11SemanticErrorZ in the error state.
57 public static Result_Bolt11InvoiceBolt11SemanticErrorZ err(org.ldk.enums.Bolt11SemanticError e) {
58 long ret = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_err(e);
59 Reference.reachabilityFence(e);
60 if (ret >= 0 && ret <= 4096) { return null; }
61 Result_Bolt11InvoiceBolt11SemanticErrorZ ret_hu_conv = Result_Bolt11InvoiceBolt11SemanticErrorZ.constr_from_ptr(ret);
66 * Checks if the given object is currently in the success state
68 public boolean is_ok() {
69 boolean ret = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_is_ok(this.ptr);
70 Reference.reachabilityFence(this);
75 long ret = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_clone_ptr(this.ptr);
76 Reference.reachabilityFence(this);
81 * Creates a new CResult_Bolt11InvoiceBolt11SemanticErrorZ which has the same data as `orig`
82 * but with all dynamically-allocated buffers duplicated in new buffers.
84 public Result_Bolt11InvoiceBolt11SemanticErrorZ clone() {
85 long ret = bindings.CResult_Bolt11InvoiceBolt11SemanticErrorZ_clone(this.ptr);
86 Reference.reachabilityFence(this);
87 if (ret >= 0 && ret <= 4096) { return null; }
88 Result_Bolt11InvoiceBolt11SemanticErrorZ ret_hu_conv = Result_Bolt11InvoiceBolt11SemanticErrorZ.constr_from_ptr(ret);