Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / PaymentError.java
index ca806da1bbbcd9fd94f0a8fcb37521733654a6aa..32b3ebc38ded052ba43be04947e3cd78b141e2ac 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import java.lang.ref.Reference;
 import javax.annotation.Nullable;
 
 
@@ -32,6 +33,9 @@ public class PaymentError extends CommonBase {
                assert false; return null; // Unreachable without extending the (internal) bindings interface
        }
 
+       /**
+        * An error resulting from the provided [`Invoice`] or payment hash.
+        */
        public final static class Invoice extends PaymentError {
                public final String invoice;
                private Invoice(long ptr, bindings.LDKPaymentError.Invoice obj) {
@@ -39,6 +43,9 @@ public class PaymentError extends CommonBase {
                        this.invoice = obj.invoice;
                }
        }
+       /**
+        * An error occurring when finding a route.
+        */
        public final static class Routing extends PaymentError {
                public final LightningError routing;
                private Routing(long ptr, bindings.LDKPaymentError.Routing obj) {
@@ -49,6 +56,9 @@ public class PaymentError extends CommonBase {
                        this.routing = routing_hu_conv;
                }
        }
+       /**
+        * An error occurring when sending a payment.
+        */
        public final static class Sending extends PaymentError {
                public final PaymentSendFailure sending;
                private Sending(long ptr, bindings.LDKPaymentError.Sending obj) {
@@ -59,11 +69,18 @@ public class PaymentError extends CommonBase {
                        this.sending = sending_hu_conv;
                }
        }
+       long clone_ptr() {
+               long ret = bindings.PaymentError_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
        /**
         * Creates a copy of the PaymentError
         */
        public PaymentError clone() {
                long ret = bindings.PaymentError_clone(this.ptr);
+               Reference.reachabilityFence(this);
                if (ret >= 0 && ret <= 4096) { return null; }
                PaymentError ret_hu_conv = PaymentError.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(this);
@@ -75,6 +92,7 @@ public class PaymentError extends CommonBase {
         */
        public static PaymentError invoice(java.lang.String a) {
                long ret = bindings.PaymentError_invoice(a);
+               Reference.reachabilityFence(a);
                if (ret >= 0 && ret <= 4096) { return null; }
                PaymentError ret_hu_conv = PaymentError.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
@@ -86,6 +104,7 @@ public class PaymentError extends CommonBase {
         */
        public static PaymentError routing(LightningError a) {
                long ret = bindings.PaymentError_routing(a == null ? 0 : a.ptr & ~1);
+               Reference.reachabilityFence(a);
                if (ret >= 0 && ret <= 4096) { return null; }
                PaymentError ret_hu_conv = PaymentError.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
@@ -97,6 +116,7 @@ public class PaymentError extends CommonBase {
         */
        public static PaymentError sending(PaymentSendFailure a) {
                long ret = bindings.PaymentError_sending(a.ptr);
+               Reference.reachabilityFence(a);
                if (ret >= 0 && ret <= 4096) { return null; }
                PaymentError ret_hu_conv = PaymentError.constr_from_ptr(ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);