X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FExpiryTime.java;h=60c7a2e0c75b1a17812aaf4ded54ba0bb4285f1d;hb=c6bac88847b7c09560af81f00ba8dd3c2ebe3a19;hp=061b549d023a25e426eb8f265bc6dc0daad680f0;hpb=b0c50b891cbca28d3bd1d86276c132ff5221d8e4;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ExpiryTime.java b/src/main/java/org/ldk/structs/ExpiryTime.java index 061b549d..60c7a2e0 100644 --- a/src/main/java/org/ldk/structs/ExpiryTime.java +++ b/src/main/java/org/ldk/structs/ExpiryTime.java @@ -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; /** @@ -24,6 +25,25 @@ public class ExpiryTime extends CommonBase { if (ptr != 0) { bindings.ExpiryTime_free(ptr); } } + /** + * Creates a copy of the ExpiryTime + */ + public ExpiryTime clone() { + long ret = bindings.ExpiryTime_clone(this.ptr); + 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. @@ -35,16 +55,6 @@ public class ExpiryTime extends CommonBase { return ret; } - /** - * Creates a copy of the ExpiryTime - */ - public ExpiryTime clone() { - long ret = bindings.ExpiryTime_clone(this.ptr); - ExpiryTime ret_hu_conv = new ExpiryTime(null, ret); - ret_hu_conv.ptrs_to.add(this); - return ret_hu_conv; - } - /** * 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 @@ -52,6 +62,7 @@ public class ExpiryTime extends CommonBase { */ public static Result_ExpiryTimeCreationErrorZ from_seconds(long seconds) { long ret = bindings.ExpiryTime_from_seconds(seconds); + if (ret >= 0 && ret <= 4096) { return null; } Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret); return ret_hu_conv; } @@ -63,6 +74,7 @@ public class ExpiryTime extends CommonBase { */ public static Result_ExpiryTimeCreationErrorZ from_duration(long duration) { long ret = bindings.ExpiryTime_from_duration(duration); + if (ret >= 0 && ret <= 4096) { return null; } Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret); return ret_hu_conv; }