Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / ExpiryTime.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import javax.annotation.Nullable;
8
9
10 /**
11  * Positive duration that defines when (relatively to the timestamp) in the future the invoice
12  * expires
13  * 
14  * # Invariants
15  * The number of seconds this expiry time represents has to be in the range
16  * `0...(SYSTEM_TIME_MAX_UNIX_TIMESTAMP - MAX_EXPIRY_TIME)` to avoid overflows when adding it to a
17  * timestamp
18  */
19 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
20 public class ExpiryTime extends CommonBase {
21         ExpiryTime(Object _dummy, long ptr) { super(ptr); }
22         @Override @SuppressWarnings("deprecation")
23         protected void finalize() throws Throwable {
24                 super.finalize();
25                 if (ptr != 0) { bindings.ExpiryTime_free(ptr); }
26         }
27
28         long clone_ptr() {
29                 long ret = bindings.ExpiryTime_clone_ptr(this.ptr);
30                 return ret;
31         }
32
33         /**
34          * Creates a copy of the ExpiryTime
35          */
36         public ExpiryTime clone() {
37                 long ret = bindings.ExpiryTime_clone(this.ptr);
38                 if (ret >= 0 && ret <= 4096) { return null; }
39                 ExpiryTime ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ExpiryTime(null, ret); }
40                 ret_hu_conv.ptrs_to.add(this);
41                 return ret_hu_conv;
42         }
43
44         /**
45          * Checks if two ExpiryTimes contain equal inner contents.
46          */
47         public long hash() {
48                 long ret = bindings.ExpiryTime_hash(this.ptr);
49                 return ret;
50         }
51
52         @Override public int hashCode() {
53                 return (int)this.hash();
54         }
55         /**
56          * Checks if two ExpiryTimes contain equal inner contents.
57          * This ignores pointers and is_owned flags and looks at the values in fields.
58          * Two objects with NULL inner values will be considered "equal" here.
59          */
60         public boolean eq(ExpiryTime b) {
61                 boolean ret = bindings.ExpiryTime_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
62                 this.ptrs_to.add(b);
63                 return ret;
64         }
65
66         @Override public boolean equals(Object o) {
67                 if (!(o instanceof ExpiryTime)) return false;
68                 return this.eq((ExpiryTime)o);
69         }
70         /**
71          * Construct an `ExpiryTime` from seconds. If there exists a `PositiveTimestamp` which would
72          * overflow on adding the `EpiryTime` to it then this function will return a
73          * `CreationError::ExpiryTimeOutOfBounds`.
74          */
75         public static Result_ExpiryTimeCreationErrorZ from_seconds(long seconds) {
76                 long ret = bindings.ExpiryTime_from_seconds(seconds);
77                 if (ret >= 0 && ret <= 4096) { return null; }
78                 Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
79                 return ret_hu_conv;
80         }
81
82         /**
83          * Construct an `ExpiryTime` from a `Duration`. If there exists a `PositiveTimestamp` which
84          * would overflow on adding the `EpiryTime` to it then this function will return a
85          * `CreationError::ExpiryTimeOutOfBounds`.
86          */
87         public static Result_ExpiryTimeCreationErrorZ from_duration(long duration) {
88                 long ret = bindings.ExpiryTime_from_duration(duration);
89                 if (ret >= 0 && ret <= 4096) { return null; }
90                 Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
91                 return ret_hu_conv;
92         }
93
94         /**
95          * Returns the expiry time in seconds
96          */
97         public long as_seconds() {
98                 long ret = bindings.ExpiryTime_as_seconds(this.ptr);
99                 return ret;
100         }
101
102         /**
103          * Returns a reference to the underlying `Duration` (=expiry time)
104          */
105         public long as_duration() {
106                 long ret = bindings.ExpiryTime_as_duration(this.ptr);
107                 return ret;
108         }
109
110 }