X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FResult_COption_MonitorEventZDecodeErrorZ.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FResult_COption_MonitorEventZDecodeErrorZ.java;h=bc311a1197e36b301a324a73d9eeb7118d801cc3;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=0000000000000000000000000000000000000000;hpb=e30b350e325e7d517ea744578876d473839ad495;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Result_COption_MonitorEventZDecodeErrorZ.java b/src/main/java/org/ldk/structs/Result_COption_MonitorEventZDecodeErrorZ.java new file mode 100644 index 00000000..bc311a11 --- /dev/null +++ b/src/main/java/org/ldk/structs/Result_COption_MonitorEventZDecodeErrorZ.java @@ -0,0 +1,88 @@ +package org.ldk.structs; + +import org.ldk.impl.bindings; +import org.ldk.enums.*; +import org.ldk.util.*; +import java.util.Arrays; +import javax.annotation.Nullable; + +public class Result_COption_MonitorEventZDecodeErrorZ extends CommonBase { + private Result_COption_MonitorEventZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); } + protected void finalize() throws Throwable { + if (ptr != 0) { bindings.CResult_COption_MonitorEventZDecodeErrorZ_free(ptr); } super.finalize(); + } + + static Result_COption_MonitorEventZDecodeErrorZ constr_from_ptr(long ptr) { + if (bindings.CResult_COption_MonitorEventZDecodeErrorZ_is_ok(ptr)) { + return new Result_COption_MonitorEventZDecodeErrorZ_OK(null, ptr); + } else { + return new Result_COption_MonitorEventZDecodeErrorZ_Err(null, ptr); + } + } + public static final class Result_COption_MonitorEventZDecodeErrorZ_OK extends Result_COption_MonitorEventZDecodeErrorZ { + public final Option_MonitorEventZ res; + private Result_COption_MonitorEventZDecodeErrorZ_OK(Object _dummy, long ptr) { + super(_dummy, ptr); + long res = bindings.LDKCResult_COption_MonitorEventZDecodeErrorZ_get_ok(ptr); + Option_MonitorEventZ res_hu_conv = Option_MonitorEventZ.constr_from_ptr(res); + res_hu_conv.ptrs_to.add(this); + this.res = res_hu_conv; + } + } + + public static final class Result_COption_MonitorEventZDecodeErrorZ_Err extends Result_COption_MonitorEventZDecodeErrorZ { + public final DecodeError err; + private Result_COption_MonitorEventZDecodeErrorZ_Err(Object _dummy, long ptr) { + super(_dummy, ptr); + long err = bindings.LDKCResult_COption_MonitorEventZDecodeErrorZ_get_err(ptr); + DecodeError err_hu_conv = null; if (err < 0 || err > 4096) { err_hu_conv = new DecodeError(null, err); } + err_hu_conv.ptrs_to.add(this); + this.err = err_hu_conv; + } + } + + /** + * Creates a new CResult_COption_MonitorEventZDecodeErrorZ in the success state. + */ + public static Result_COption_MonitorEventZDecodeErrorZ ok(Option_MonitorEventZ o) { + long ret = bindings.CResult_COption_MonitorEventZDecodeErrorZ_ok(o.ptr); + if (ret >= 0 && ret <= 4096) { return null; } + Result_COption_MonitorEventZDecodeErrorZ ret_hu_conv = Result_COption_MonitorEventZDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + /** + * Creates a new CResult_COption_MonitorEventZDecodeErrorZ in the error state. + */ + public static Result_COption_MonitorEventZDecodeErrorZ err(DecodeError e) { + long ret = bindings.CResult_COption_MonitorEventZDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1); + if (ret >= 0 && ret <= 4096) { return null; } + Result_COption_MonitorEventZDecodeErrorZ ret_hu_conv = Result_COption_MonitorEventZDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + /** + * Checks if the given object is currently in the success state + */ + public boolean is_ok() { + boolean ret = bindings.CResult_COption_MonitorEventZDecodeErrorZ_is_ok(this.ptr); + return ret; + } + + long clone_ptr() { + long ret = bindings.CResult_COption_MonitorEventZDecodeErrorZ_clone_ptr(this.ptr); + return ret; + } + + /** + * Creates a new CResult_COption_MonitorEventZDecodeErrorZ which has the same data as `orig` + * but with all dynamically-allocated buffers duplicated in new buffers. + */ + public Result_COption_MonitorEventZDecodeErrorZ clone() { + long ret = bindings.CResult_COption_MonitorEventZDecodeErrorZ_clone(this.ptr); + if (ret >= 0 && ret <= 4096) { return null; } + Result_COption_MonitorEventZDecodeErrorZ ret_hu_conv = Result_COption_MonitorEventZDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + +}