Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / ExpiryTime.java
index e88c139340bfeab24c693ca3d0192289a655b0b4..c476b6c6de74e9835e38891c13da80ad12057e8b 100644 (file)
@@ -25,14 +25,8 @@ public class ExpiryTime extends CommonBase {
                if (ptr != 0) { bindings.ExpiryTime_free(ptr); }
        }
 
-       /**
-        * Checks if two ExpiryTimes contain equal inner contents.
-        * This ignores pointers and is_owned flags and looks at the values in fields.
-        * Two objects with NULL inner values will be considered "equal" here.
-        */
-       public boolean eq(ExpiryTime b) {
-               boolean ret = bindings.ExpiryTime_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
-               this.ptrs_to.add(b);
+       long clone_ptr() {
+               long ret = bindings.ExpiryTime_clone_ptr(this.ptr);
                return ret;
        }
 
@@ -41,12 +35,31 @@ public class ExpiryTime extends CommonBase {
         */
        public ExpiryTime clone() {
                long ret = bindings.ExpiryTime_clone(this.ptr);
-               if (ret < 1024) { return null; }
-               ExpiryTime ret_hu_conv = new ExpiryTime(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               ExpiryTime ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ExpiryTime(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
+       /**
+        * Checks if two ExpiryTimes contain equal inner contents.
+        */
+       public long hash() {
+               long ret = bindings.ExpiryTime_hash(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Checks if two ExpiryTimes contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        * Two objects with NULL inner values will be considered "equal" here.
+        */
+       public boolean eq(ExpiryTime b) {
+               boolean ret = bindings.ExpiryTime_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               this.ptrs_to.add(b);
+               return ret;
+       }
+
        /**
         * Construct an `ExpiryTime` from seconds. If there exists a `PositiveTimestamp` which would
         * overflow on adding the `EpiryTime` to it then this function will return a
@@ -54,7 +67,7 @@ public class ExpiryTime extends CommonBase {
         */
        public static Result_ExpiryTimeCreationErrorZ from_seconds(long seconds) {
                long ret = bindings.ExpiryTime_from_seconds(seconds);
-               if (ret < 1024) { return null; }
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
@@ -66,7 +79,7 @@ public class ExpiryTime extends CommonBase {
         */
        public static Result_ExpiryTimeCreationErrorZ from_duration(long duration) {
                long ret = bindings.ExpiryTime_from_duration(duration);
-               if (ret < 1024) { return null; }
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }