[Java] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / src / main / java / org / ldk / structs / Result_ProbabilisticScorerDecodeErrorZ.java
index 042f12c9f61bc0c2a79804672211e4eca7270042..8ec63d2465b6b6729cdb01da6feac5fbdad59df9 100644 (file)
@@ -13,6 +13,10 @@ public class Result_ProbabilisticScorerDecodeErrorZ extends CommonBase {
                if (ptr != 0) { bindings.CResult_ProbabilisticScorerDecodeErrorZ_free(ptr); } super.finalize();
        }
 
+       protected void force_free() {
+               if (ptr != 0) { bindings.CResult_ProbabilisticScorerDecodeErrorZ_free(ptr); ptr = 0; }
+       }
+
        static Result_ProbabilisticScorerDecodeErrorZ constr_from_ptr(long ptr) {
                if (bindings.CResult_ProbabilisticScorerDecodeErrorZ_is_ok(ptr)) {
                        return new Result_ProbabilisticScorerDecodeErrorZ_OK(null, ptr);
@@ -26,7 +30,7 @@ public class Result_ProbabilisticScorerDecodeErrorZ extends CommonBase {
                        super(_dummy, ptr);
                        long res = bindings.CResult_ProbabilisticScorerDecodeErrorZ_get_ok(ptr);
                        org.ldk.structs.ProbabilisticScorer res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.ProbabilisticScorer(null, res); }
-                       res_hu_conv.ptrs_to.add(this);
+                       if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
                        this.res = res_hu_conv;
                }
        }
@@ -36,8 +40,8 @@ public class Result_ProbabilisticScorerDecodeErrorZ extends CommonBase {
                private Result_ProbabilisticScorerDecodeErrorZ_Err(Object _dummy, long ptr) {
                        super(_dummy, ptr);
                        long err = bindings.CResult_ProbabilisticScorerDecodeErrorZ_get_err(ptr);
-                       org.ldk.structs.DecodeError err_hu_conv = null; if (err < 0 || err > 4096) { err_hu_conv = new org.ldk.structs.DecodeError(null, err); }
-                       err_hu_conv.ptrs_to.add(this);
+                       org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
+                       if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
                        this.err = err_hu_conv;
                }
        }
@@ -45,28 +49,28 @@ public class Result_ProbabilisticScorerDecodeErrorZ extends CommonBase {
        /**
         * Creates a new CResult_ProbabilisticScorerDecodeErrorZ in the success state.
         */
-       public static Result_ProbabilisticScorerDecodeErrorZ ok(ProbabilisticScoringParameters o_params, NetworkGraph o_network_graph, Logger o_logger) {
-               long ret = bindings.CResult_ProbabilisticScorerDecodeErrorZ_ok(bindings.ProbabilisticScorer_new(o_params == null ? 0 : o_params.ptr, o_network_graph == null ? 0 : o_network_graph.ptr, o_logger == null ? 0 : o_logger.ptr));
-               Reference.reachabilityFence(o_params);
+       public static Result_ProbabilisticScorerDecodeErrorZ ok(ProbabilisticScoringDecayParameters o_decay_params, NetworkGraph o_network_graph, Logger o_logger) {
+               long ret = bindings.CResult_ProbabilisticScorerDecodeErrorZ_ok(bindings.ProbabilisticScorer_new(o_decay_params.ptr, o_network_graph.ptr, o_logger.ptr));
+               Reference.reachabilityFence(o_decay_params);
                Reference.reachabilityFence(o_network_graph);
                Reference.reachabilityFence(o_logger);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ProbabilisticScorerDecodeErrorZ ret_hu_conv = Result_ProbabilisticScorerDecodeErrorZ.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(o_params);
-               ret_hu_conv.ptrs_to.add(o_network_graph);
-               ret_hu_conv.ptrs_to.add(o_logger);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o_decay_params); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o_network_graph); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o_logger); };
                return ret_hu_conv;
        }
 
        /**
         * Creates a new CResult_ProbabilisticScorerDecodeErrorZ in the error state.
         */
-       public static Result_ProbabilisticScorerDecodeErrorZ err(DecodeError e) {
-               long ret = bindings.CResult_ProbabilisticScorerDecodeErrorZ_err(e == null ? 0 : e.ptr);
+       public static Result_ProbabilisticScorerDecodeErrorZ err(org.ldk.structs.DecodeError e) {
+               long ret = bindings.CResult_ProbabilisticScorerDecodeErrorZ_err(e.ptr);
                Reference.reachabilityFence(e);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ProbabilisticScorerDecodeErrorZ ret_hu_conv = Result_ProbabilisticScorerDecodeErrorZ.constr_from_ptr(ret);
-               ret_hu_conv.ptrs_to.add(e);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
                return ret_hu_conv;
        }