Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / ExpiryTime.java
index 972befdaca3c833dc8d144772a2405edfe808dcc..ecb2d4c948a1dd770c8882314bac5c3796f5ada6 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;
 
 
@@ -25,13 +26,20 @@ public class ExpiryTime extends CommonBase {
                if (ptr != 0) { bindings.ExpiryTime_free(ptr); }
        }
 
+       long clone_ptr() {
+               long ret = bindings.ExpiryTime_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
        /**
         * Creates a copy of the ExpiryTime
         */
        public ExpiryTime clone() {
                long ret = bindings.ExpiryTime_clone(this.ptr);
-               if (ret >= 0 && ret < 1024) { return null; }
-               ExpiryTime ret_hu_conv = new ExpiryTime(null, ret);
+               Reference.reachabilityFence(this);
+               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;
        }
@@ -41,9 +49,13 @@ public class ExpiryTime extends CommonBase {
         */
        public long hash() {
                long ret = bindings.ExpiryTime_hash(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
+       @Override public int hashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two ExpiryTimes contain equal inner contents.
         * This ignores pointers and is_owned flags and looks at the values in fields.
@@ -51,10 +63,16 @@ public class ExpiryTime extends CommonBase {
         */
        public boolean eq(ExpiryTime b) {
                boolean ret = bindings.ExpiryTime_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(b);
                this.ptrs_to.add(b);
                return ret;
        }
 
+       @Override public boolean equals(Object o) {
+               if (!(o instanceof ExpiryTime)) return false;
+               return this.eq((ExpiryTime)o);
+       }
        /**
         * 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
@@ -62,7 +80,8 @@ public class ExpiryTime extends CommonBase {
         */
        public static Result_ExpiryTimeCreationErrorZ from_seconds(long seconds) {
                long ret = bindings.ExpiryTime_from_seconds(seconds);
-               if (ret >= 0 && ret < 1024) { return null; }
+               Reference.reachabilityFence(seconds);
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
@@ -74,7 +93,8 @@ public class ExpiryTime extends CommonBase {
         */
        public static Result_ExpiryTimeCreationErrorZ from_duration(long duration) {
                long ret = bindings.ExpiryTime_from_duration(duration);
-               if (ret >= 0 && ret < 1024) { return null; }
+               Reference.reachabilityFence(duration);
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
@@ -84,6 +104,7 @@ public class ExpiryTime extends CommonBase {
         */
        public long as_seconds() {
                long ret = bindings.ExpiryTime_as_seconds(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -92,6 +113,7 @@ public class ExpiryTime extends CommonBase {
         */
        public long as_duration() {
                long ret = bindings.ExpiryTime_as_duration(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }