Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_NoneErrorZ.java
index e76e4f70a7b14ad26783b5571448061b355c9110..a2fc3b4ba5b88b63a53734e8416991517f8d2d61 100644 (file)
@@ -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_NoneErrorZ extends CommonBase {
        private Result_NoneErrorZ(Object _dummy, long ptr) { super(ptr); }
@@ -12,7 +13,7 @@ public class Result_NoneErrorZ extends CommonBase {
        }
 
        static Result_NoneErrorZ constr_from_ptr(long ptr) {
-               if (bindings.LDKCResult_NoneErrorZ_result_ok(ptr)) {
+               if (bindings.CResult_NoneErrorZ_is_ok(ptr)) {
                        return new Result_NoneErrorZ_OK(null, ptr);
                } else {
                        return new Result_NoneErrorZ_Err(null, ptr);
@@ -25,7 +26,7 @@ public class Result_NoneErrorZ extends CommonBase {
        }
 
        public static final class Result_NoneErrorZ_Err extends Result_NoneErrorZ {
-               public final LDKIOError err;
+               public final IOError err;
                private Result_NoneErrorZ_Err(Object _dummy, long ptr) {
                        super(_dummy, ptr);
                        this.err = bindings.LDKCResult_NoneErrorZ_get_err(ptr);
@@ -35,8 +36,9 @@ public class Result_NoneErrorZ extends CommonBase {
        /**
         * Creates a new CResult_NoneErrorZ in the success state.
         */
-       public static Result_NoneErrorZ constructor_ok() {
+       public static Result_NoneErrorZ ok() {
                long ret = bindings.CResult_NoneErrorZ_ok();
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_NoneErrorZ ret_hu_conv = Result_NoneErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
@@ -44,8 +46,33 @@ public class Result_NoneErrorZ extends CommonBase {
        /**
         * Creates a new CResult_NoneErrorZ in the error state.
         */
-       public static Result_NoneErrorZ constructor_err(LDKIOError e) {
+       public static Result_NoneErrorZ err(org.ldk.enums.IOError e) {
                long ret = bindings.CResult_NoneErrorZ_err(e);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_NoneErrorZ ret_hu_conv = Result_NoneErrorZ.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_NoneErrorZ_is_ok(this.ptr);
+               return ret;
+       }
+
+       long clone_ptr() {
+               long ret = bindings.CResult_NoneErrorZ_clone_ptr(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Creates a new CResult_NoneErrorZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Result_NoneErrorZ clone() {
+               long ret = bindings.CResult_NoneErrorZ_clone(this.ptr);
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_NoneErrorZ ret_hu_conv = Result_NoneErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }