Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_RoutingFeesDecodeErrorZ.java
index eda7ce3e11b5efc7f9777e3b1e7ba318a4bfe407..335f379a15b3e17f3d6466b46f6fbc05828620bb 100644 (file)
@@ -5,7 +5,6 @@ import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
 
-@SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class Result_RoutingFeesDecodeErrorZ extends CommonBase {
        private Result_RoutingFeesDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
        protected void finalize() throws Throwable {
@@ -25,12 +24,9 @@ public class Result_RoutingFeesDecodeErrorZ extends CommonBase {
                        super(_dummy, ptr);
                        long res = bindings.LDKCResult_RoutingFeesDecodeErrorZ_get_ok(ptr);
                        RoutingFees res_hu_conv = new RoutingFees(null, res);
+                       res_hu_conv.ptrs_to.add(this);
                        this.res = res_hu_conv;
                }
-               public Result_RoutingFeesDecodeErrorZ_OK(RoutingFees res) {
-                       this(null, bindings.CResult_RoutingFeesDecodeErrorZ_ok(res == null ? 0 : res.ptr & ~1));
-                       this.ptrs_to.add(res);
-               }
        }
 
        public static final class Result_RoutingFeesDecodeErrorZ_Err extends Result_RoutingFeesDecodeErrorZ {
@@ -39,11 +35,39 @@ public class Result_RoutingFeesDecodeErrorZ extends CommonBase {
                        super(_dummy, ptr);
                        long err = bindings.LDKCResult_RoutingFeesDecodeErrorZ_get_err(ptr);
                        DecodeError err_hu_conv = new DecodeError(null, err);
+                       err_hu_conv.ptrs_to.add(this);
                        this.err = err_hu_conv;
                }
-               public Result_RoutingFeesDecodeErrorZ_Err(DecodeError err) {
-                       this(null, bindings.CResult_RoutingFeesDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1));
-                       this.ptrs_to.add(err);
-               }
        }
+
+       /**
+        * Creates a new CResult_RoutingFeesDecodeErrorZ in the success state.
+        */
+       public static Result_RoutingFeesDecodeErrorZ ok(RoutingFees o) {
+               long ret = bindings.CResult_RoutingFeesDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
+               Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(o);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_RoutingFeesDecodeErrorZ in the error state.
+        */
+       public static Result_RoutingFeesDecodeErrorZ err(DecodeError e) {
+               long ret = bindings.CResult_RoutingFeesDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
+               Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(e);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new CResult_RoutingFeesDecodeErrorZ which has the same data as `orig`
+        * but with all dynamically-allocated buffers duplicated in new buffers.
+        */
+       public Result_RoutingFeesDecodeErrorZ clone() {
+               long ret = bindings.CResult_RoutingFeesDecodeErrorZ_clone(this.ptr);
+               Result_RoutingFeesDecodeErrorZ ret_hu_conv = Result_RoutingFeesDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
 }