Update auto-generated bindings
[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
8
9 /**
10  * Positive duration that defines when (relatively to the timestamp) in the future the invoice
11  * expires
12  * 
13  * # Invariants
14  * The number of seconds this expiry time represents has to be in the range
15  * `0...(SYSTEM_TIME_MAX_UNIX_TIMESTAMP - MAX_EXPIRY_TIME)` to avoid overflows when adding it to a
16  * timestamp
17  */
18 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
19 public class ExpiryTime extends CommonBase {
20         ExpiryTime(Object _dummy, long ptr) { super(ptr); }
21         @Override @SuppressWarnings("deprecation")
22         protected void finalize() throws Throwable {
23                 super.finalize();
24                 if (ptr != 0) { bindings.ExpiryTime_free(ptr); }
25         }
26
27         /**
28          * Checks if two ExpiryTimes contain equal inner contents.
29          * This ignores pointers and is_owned flags and looks at the values in fields.
30          * Two objects with NULL inner values will be considered "equal" here.
31          */
32         public boolean eq(ExpiryTime b) {
33                 boolean ret = bindings.ExpiryTime_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
34                 this.ptrs_to.add(b);
35                 return ret;
36         }
37
38         /**
39          * Creates a copy of the ExpiryTime
40          */
41         public ExpiryTime clone() {
42                 long ret = bindings.ExpiryTime_clone(this.ptr);
43                 ExpiryTime ret_hu_conv = new ExpiryTime(null, ret);
44                 ret_hu_conv.ptrs_to.add(this);
45                 return ret_hu_conv;
46         }
47
48         /**
49          * Construct an `ExpiryTime` from seconds. If there exists a `PositiveTimestamp` which would
50          * overflow on adding the `EpiryTime` to it then this function will return a
51          * `CreationError::ExpiryTimeOutOfBounds`.
52          */
53         public static Result_ExpiryTimeCreationErrorZ from_seconds(long seconds) {
54                 long ret = bindings.ExpiryTime_from_seconds(seconds);
55                 Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
56                 return ret_hu_conv;
57         }
58
59         /**
60          * Construct an `ExpiryTime` from a `Duration`. If there exists a `PositiveTimestamp` which
61          * would overflow on adding the `EpiryTime` to it then this function will return a
62          * `CreationError::ExpiryTimeOutOfBounds`.
63          */
64         public static Result_ExpiryTimeCreationErrorZ from_duration(long duration) {
65                 long ret = bindings.ExpiryTime_from_duration(duration);
66                 Result_ExpiryTimeCreationErrorZ ret_hu_conv = Result_ExpiryTimeCreationErrorZ.constr_from_ptr(ret);
67                 return ret_hu_conv;
68         }
69
70         /**
71          * Returns the expiry time in seconds
72          */
73         public long as_seconds() {
74                 long ret = bindings.ExpiryTime_as_seconds(this.ptr);
75                 return ret;
76         }
77
78         /**
79          * Returns a reference to the underlying `Duration` (=expiry time)
80          */
81         public long as_duration() {
82                 long ret = bindings.ExpiryTime_as_duration(this.ptr);
83                 return ret;
84         }
85
86 }