Merge pull request #33 from TheBlueMatt/main
[ldk-java] / src / main / java / org / ldk / structs / Result_RouteDecodeErrorZ.java
index 601e81e1fffaca48746e251e70e20a19707c9b70..d2c528b8303816a7119c668b93f52c10a1852014 100644 (file)
@@ -4,8 +4,8 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import javax.annotation.Nullable;
 
-@SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class Result_RouteDecodeErrorZ extends CommonBase {
        private Result_RouteDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
        protected void finalize() throws Throwable {
@@ -28,10 +28,6 @@ public class Result_RouteDecodeErrorZ extends CommonBase {
                        res_hu_conv.ptrs_to.add(this);
                        this.res = res_hu_conv;
                }
-               public Result_RouteDecodeErrorZ_OK(Route res) {
-                       this(null, bindings.CResult_RouteDecodeErrorZ_ok(res == null ? 0 : res.ptr & ~1));
-                       this.ptrs_to.add(res);
-               }
        }
 
        public static final class Result_RouteDecodeErrorZ_Err extends Result_RouteDecodeErrorZ {
@@ -43,9 +39,39 @@ public class Result_RouteDecodeErrorZ extends CommonBase {
                        err_hu_conv.ptrs_to.add(this);
                        this.err = err_hu_conv;
                }
-               public Result_RouteDecodeErrorZ_Err(DecodeError err) {
-                       this(null, bindings.CResult_RouteDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1));
-                       this.ptrs_to.add(err);
-               }
        }
+
+       /**
+        * Creates a new CResult_RouteDecodeErrorZ in the success state.
+        */
+       public static Result_RouteDecodeErrorZ ok(Route o) {
+               long ret = bindings.CResult_RouteDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
+               if (ret < 1024) { return null; }
+               Result_RouteDecodeErrorZ ret_hu_conv = Result_RouteDecodeErrorZ.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(o);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_RouteDecodeErrorZ in the error state.
+        */
+       public static Result_RouteDecodeErrorZ err(DecodeError e) {
+               long ret = bindings.CResult_RouteDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
+               if (ret < 1024) { return null; }
+               Result_RouteDecodeErrorZ ret_hu_conv = Result_RouteDecodeErrorZ.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(e);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_RouteDecodeErrorZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Result_RouteDecodeErrorZ clone() {
+               long ret = bindings.CResult_RouteDecodeErrorZ_clone(this.ptr);
+               if (ret < 1024) { return null; }
+               Result_RouteDecodeErrorZ ret_hu_conv = Result_RouteDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
 }