X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FResult_ChannelInfoDecodeErrorZ.java;h=b88b56f0da6d5d2181063a2d8836cb5e8f965819;hb=32692e00046b7ec16b6a2e20bd54800b2b48d4c0;hp=ad262d1139e9e28a72b3a5716a130d83262c079e;hpb=1b870a3ffab1c0024411e30102bc6d198300f095;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Result_ChannelInfoDecodeErrorZ.java b/src/main/java/org/ldk/structs/Result_ChannelInfoDecodeErrorZ.java index ad262d11..b88b56f0 100644 --- a/src/main/java/org/ldk/structs/Result_ChannelInfoDecodeErrorZ.java +++ b/src/main/java/org/ldk/structs/Result_ChannelInfoDecodeErrorZ.java @@ -4,6 +4,7 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import javax.annotation.Nullable; public class Result_ChannelInfoDecodeErrorZ extends CommonBase { private Result_ChannelInfoDecodeErrorZ(Object _dummy, long ptr) { super(ptr); } @@ -27,10 +28,6 @@ public class Result_ChannelInfoDecodeErrorZ extends CommonBase { res_hu_conv.ptrs_to.add(this); this.res = res_hu_conv; } - public Result_ChannelInfoDecodeErrorZ_OK(ChannelInfo res) { - this(null, bindings.CResult_ChannelInfoDecodeErrorZ_ok(res == null ? 0 : res.ptr & ~1)); - this.ptrs_to.add(res); - } } public static final class Result_ChannelInfoDecodeErrorZ_Err extends Result_ChannelInfoDecodeErrorZ { @@ -42,9 +39,37 @@ public class Result_ChannelInfoDecodeErrorZ extends CommonBase { err_hu_conv.ptrs_to.add(this); this.err = err_hu_conv; } - public Result_ChannelInfoDecodeErrorZ_Err(DecodeError err) { - this(null, bindings.CResult_ChannelInfoDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1)); - this.ptrs_to.add(err); - } } + + /** + * Creates a new CResult_ChannelInfoDecodeErrorZ in the success state. + */ + public static Result_ChannelInfoDecodeErrorZ ok(ChannelInfo o) { + long ret = bindings.CResult_ChannelInfoDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1); + if (ret >= 0 && ret < 1024) { return null; } + Result_ChannelInfoDecodeErrorZ ret_hu_conv = Result_ChannelInfoDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + /** + * Creates a new CResult_ChannelInfoDecodeErrorZ in the error state. + */ + public static Result_ChannelInfoDecodeErrorZ err(DecodeError e) { + long ret = bindings.CResult_ChannelInfoDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1); + if (ret >= 0 && ret < 1024) { return null; } + Result_ChannelInfoDecodeErrorZ ret_hu_conv = Result_ChannelInfoDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + /** + * Creates a new CResult_ChannelInfoDecodeErrorZ which has the same data as `orig` + * but with all dynamically-allocated buffers duplicated in new buffers. + */ + public Result_ChannelInfoDecodeErrorZ clone() { + long ret = bindings.CResult_ChannelInfoDecodeErrorZ_clone(this.ptr); + if (ret >= 0 && ret < 1024) { return null; } + Result_ChannelInfoDecodeErrorZ ret_hu_conv = Result_ChannelInfoDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }