[Java] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / src / main / java / org / ldk / structs / PeerHandleError.java
index 429f44aa3641d3383d4cfcc5113b21ce367b9f6d..b1d20445e3c1a6eac89109515263830dd2994a7e 100644 (file)
@@ -4,6 +4,8 @@ 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;
 
 
 /**
@@ -21,40 +23,41 @@ public class PeerHandleError extends CommonBase {
        }
 
        /**
-        * Used to indicate that we probably can't make any future connections to this peer, implying
-        * we should go ahead and force-close any channels we have with it.
+        * Constructs a new PeerHandleError given each field
         */
-       public boolean get_no_connection_possible() {
-               boolean ret = bindings.PeerHandleError_get_no_connection_possible(this.ptr);
-               return ret;
+       public static PeerHandleError of() {
+               long ret = bindings.PeerHandleError_new();
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.PeerHandleError ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PeerHandleError(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
+               return ret_hu_conv;
        }
 
-       /**
-        * Used to indicate that we probably can't make any future connections to this peer, implying
-        * we should go ahead and force-close any channels we have with it.
-        */
-       public void set_no_connection_possible(boolean val) {
-               bindings.PeerHandleError_set_no_connection_possible(this.ptr, val);
+       long clone_ptr() {
+               long ret = bindings.PeerHandleError_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
        }
 
        /**
-        * Constructs a new PeerHandleError given each field
+        * Creates a copy of the PeerHandleError
         */
-       public static PeerHandleError constructor_new(boolean no_connection_possible_arg) {
-               long ret = bindings.PeerHandleError_new(no_connection_possible_arg);
-               PeerHandleError ret_hu_conv = new PeerHandleError(null, ret);
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+       public PeerHandleError clone() {
+               long ret = bindings.PeerHandleError_clone(this.ptr);
+               Reference.reachabilityFence(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.PeerHandleError ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.PeerHandleError(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
                return ret_hu_conv;
        }
 
        /**
-        * Creates a copy of the PeerHandleError
+        * Get the string representation of a PeerHandleError object
         */
-       public PeerHandleError clone() {
-               long ret = bindings.PeerHandleError_clone(this.ptr);
-               PeerHandleError ret_hu_conv = new PeerHandleError(null, ret);
-               ret_hu_conv.ptrs_to.add(this);
-               return ret_hu_conv;
+       public String to_str() {
+               String ret = bindings.PeerHandleError_to_str(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
        }
 
 }