Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_RouteLightningErrorZ.java
index fa9ab9761d089ee7bed4fb9ec971d502f4f40273..7348c731dcca4a70ad66c0c4229dbd8c5a148124 100644 (file)
@@ -27,10 +27,6 @@ public class Result_RouteLightningErrorZ extends CommonBase {
                        res_hu_conv.ptrs_to.add(this);
                        this.res = res_hu_conv;
                }
-               public Result_RouteLightningErrorZ_OK(Route res) {
-                       this(null, bindings.CResult_RouteLightningErrorZ_ok(res == null ? 0 : res.ptr & ~1));
-                       this.ptrs_to.add(res);
-               }
        }
 
        public static final class Result_RouteLightningErrorZ_Err extends Result_RouteLightningErrorZ {
@@ -42,9 +38,36 @@ public class Result_RouteLightningErrorZ extends CommonBase {
                        err_hu_conv.ptrs_to.add(this);
                        this.err = err_hu_conv;
                }
-               public Result_RouteLightningErrorZ_Err(LightningError err) {
-                       this(null, bindings.CResult_RouteLightningErrorZ_err(err == null ? 0 : err.ptr & ~1));
-                       this.ptrs_to.add(err);
-               }
        }
+
+       /**
+        * Creates a new CResult_RouteLightningErrorZ in the success state.
+        */
+       public static Result_RouteLightningErrorZ constructor_ok(Route o) {
+               long ret = bindings.CResult_RouteLightningErrorZ_ok(o == null ? 0 : o.ptr & ~1);
+               Result_RouteLightningErrorZ ret_hu_conv = Result_RouteLightningErrorZ.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(o);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_RouteLightningErrorZ in the error state.
+        */
+       public static Result_RouteLightningErrorZ constructor_err(LightningError e) {
+               long ret = bindings.CResult_RouteLightningErrorZ_err(e == null ? 0 : e.ptr & ~1);
+               Result_RouteLightningErrorZ ret_hu_conv = Result_RouteLightningErrorZ.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(e);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_RouteLightningErrorZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Result_RouteLightningErrorZ clone() {
+               long ret = bindings.CResult_RouteLightningErrorZ_clone(this.ptr);
+               Result_RouteLightningErrorZ ret_hu_conv = Result_RouteLightningErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
 }