Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_COption_EventZDecodeErrorZ.java
diff --git a/src/main/java/org/ldk/structs/Result_COption_EventZDecodeErrorZ.java b/src/main/java/org/ldk/structs/Result_COption_EventZDecodeErrorZ.java
new file mode 100644 (file)
index 0000000..daf8f8e
--- /dev/null
@@ -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_EventZDecodeErrorZ extends CommonBase {
+       private Result_COption_EventZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
+       protected void finalize() throws Throwable {
+               if (ptr != 0) { bindings.CResult_COption_EventZDecodeErrorZ_free(ptr); } super.finalize();
+       }
+
+       static Result_COption_EventZDecodeErrorZ constr_from_ptr(long ptr) {
+               if (bindings.CResult_COption_EventZDecodeErrorZ_is_ok(ptr)) {
+                       return new Result_COption_EventZDecodeErrorZ_OK(null, ptr);
+               } else {
+                       return new Result_COption_EventZDecodeErrorZ_Err(null, ptr);
+               }
+       }
+       public static final class Result_COption_EventZDecodeErrorZ_OK extends Result_COption_EventZDecodeErrorZ {
+               public final Option_EventZ res;
+               private Result_COption_EventZDecodeErrorZ_OK(Object _dummy, long ptr) {
+                       super(_dummy, ptr);
+                       long res = bindings.LDKCResult_COption_EventZDecodeErrorZ_get_ok(ptr);
+                       Option_EventZ res_hu_conv = Option_EventZ.constr_from_ptr(res);
+                       res_hu_conv.ptrs_to.add(this);
+                       this.res = res_hu_conv;
+               }
+       }
+
+       public static final class Result_COption_EventZDecodeErrorZ_Err extends Result_COption_EventZDecodeErrorZ {
+               public final DecodeError err;
+               private Result_COption_EventZDecodeErrorZ_Err(Object _dummy, long ptr) {
+                       super(_dummy, ptr);
+                       long err = bindings.LDKCResult_COption_EventZDecodeErrorZ_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_EventZDecodeErrorZ in the success state.
+        */
+       public static Result_COption_EventZDecodeErrorZ ok(Option_EventZ o) {
+               long ret = bindings.CResult_COption_EventZDecodeErrorZ_ok(o.ptr);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_COption_EventZDecodeErrorZ in the error state.
+        */
+       public static Result_COption_EventZDecodeErrorZ err(DecodeError e) {
+               long ret = bindings.CResult_COption_EventZDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.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_EventZDecodeErrorZ_is_ok(this.ptr);
+               return ret;
+       }
+
+       long clone_ptr() {
+               long ret = bindings.CResult_COption_EventZDecodeErrorZ_clone_ptr(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Creates a new CResult_COption_EventZDecodeErrorZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Result_COption_EventZDecodeErrorZ clone() {
+               long ret = bindings.CResult_COption_EventZDecodeErrorZ_clone(this.ptr);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
+}