Update auto-generated bindings to 0.0.101
[ldk-java] / src / main / java / org / ldk / structs / Ping.java
index b852fbaf6ad1f0386ffecc6edd3c4085e4d94915..20fd551986515338812def0b4218133c6eed731d 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import javax.annotation.Nullable;
 
 
 /**
@@ -53,8 +54,9 @@ public class Ping extends CommonBase {
        /**
         * Constructs a new Ping given each field
         */
-       public static Ping constructor_new(short ponglen_arg, short byteslen_arg) {
+       public static Ping of(short ponglen_arg, short byteslen_arg) {
                long ret = bindings.Ping_new(ponglen_arg, byteslen_arg);
+               if (ret < 1024) { return null; }
                Ping ret_hu_conv = new Ping(null, ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
@@ -65,6 +67,7 @@ public class Ping extends CommonBase {
         */
        public Ping clone() {
                long ret = bindings.Ping_clone(this.ptr);
+               if (ret < 1024) { return null; }
                Ping ret_hu_conv = new Ping(null, ret);
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
@@ -81,8 +84,9 @@ public class Ping extends CommonBase {
        /**
         * Read a Ping from a byte array, created by Ping_write
         */
-       public static Result_PingDecodeErrorZ constructor_read(byte[] ser) {
+       public static Result_PingDecodeErrorZ read(byte[] ser) {
                long ret = bindings.Ping_read(ser);
+               if (ret < 1024) { return null; }
                Result_PingDecodeErrorZ ret_hu_conv = Result_PingDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }