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_OfferFeaturesDecodeErrorZ extends CommonBase {
11 private Result_OfferFeaturesDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_OfferFeaturesDecodeErrorZ_free(ptr); } super.finalize();
16 static Result_OfferFeaturesDecodeErrorZ constr_from_ptr(long ptr) {
17 if (bindings.CResult_OfferFeaturesDecodeErrorZ_is_ok(ptr)) {
18 return new Result_OfferFeaturesDecodeErrorZ_OK(null, ptr);
20 return new Result_OfferFeaturesDecodeErrorZ_Err(null, ptr);
23 public static final class Result_OfferFeaturesDecodeErrorZ_OK extends Result_OfferFeaturesDecodeErrorZ {
24 public final OfferFeatures res;
25 private Result_OfferFeaturesDecodeErrorZ_OK(Object _dummy, long ptr) {
27 long res = bindings.CResult_OfferFeaturesDecodeErrorZ_get_ok(ptr);
28 org.ldk.structs.OfferFeatures res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.OfferFeatures(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_OfferFeaturesDecodeErrorZ_Err extends Result_OfferFeaturesDecodeErrorZ {
35 public final DecodeError err;
36 private Result_OfferFeaturesDecodeErrorZ_Err(Object _dummy, long ptr) {
38 long err = bindings.CResult_OfferFeaturesDecodeErrorZ_get_err(ptr);
39 org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
40 if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
41 this.err = err_hu_conv;
46 * Creates a new CResult_OfferFeaturesDecodeErrorZ in the success state.
48 public static Result_OfferFeaturesDecodeErrorZ ok(org.ldk.structs.OfferFeatures o) {
49 long ret = bindings.CResult_OfferFeaturesDecodeErrorZ_ok(o == null ? 0 : o.ptr);
50 Reference.reachabilityFence(o);
51 if (ret >= 0 && ret <= 4096) { return null; }
52 Result_OfferFeaturesDecodeErrorZ ret_hu_conv = Result_OfferFeaturesDecodeErrorZ.constr_from_ptr(ret);
53 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
58 * Creates a new CResult_OfferFeaturesDecodeErrorZ in the error state.
60 public static Result_OfferFeaturesDecodeErrorZ err(org.ldk.structs.DecodeError e) {
61 long ret = bindings.CResult_OfferFeaturesDecodeErrorZ_err(e.ptr);
62 Reference.reachabilityFence(e);
63 if (ret >= 0 && ret <= 4096) { return null; }
64 Result_OfferFeaturesDecodeErrorZ ret_hu_conv = Result_OfferFeaturesDecodeErrorZ.constr_from_ptr(ret);
69 * Checks if the given object is currently in the success state
71 public boolean is_ok() {
72 boolean ret = bindings.CResult_OfferFeaturesDecodeErrorZ_is_ok(this.ptr);
73 Reference.reachabilityFence(this);
78 long ret = bindings.CResult_OfferFeaturesDecodeErrorZ_clone_ptr(this.ptr);
79 Reference.reachabilityFence(this);
84 * Creates a new CResult_OfferFeaturesDecodeErrorZ which has the same data as `orig`
85 * but with all dynamically-allocated buffers duplicated in new buffers.
87 public Result_OfferFeaturesDecodeErrorZ clone() {
88 long ret = bindings.CResult_OfferFeaturesDecodeErrorZ_clone(this.ptr);
89 Reference.reachabilityFence(this);
90 if (ret >= 0 && ret <= 4096) { return null; }
91 Result_OfferFeaturesDecodeErrorZ ret_hu_conv = Result_OfferFeaturesDecodeErrorZ.constr_from_ptr(ret);