Update auto-generated bindings to 0.0.103
[ldk-java] / src / main / java / org / ldk / structs / PositiveTimestamp.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  * A timestamp that refers to a date after 1 January 1970 which means its representation as UNIX
12  * timestamp is positive.
13  * 
14  * # Invariants
15  * The UNIX timestamp representing the stored time has to be positive and small enough so that
16  * a `EpiryTime` can be added to it without an overflow.
17  */
18 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
19 public class PositiveTimestamp extends CommonBase {
20         PositiveTimestamp(Object _dummy, long ptr) { super(ptr); }
21         @Override @SuppressWarnings("deprecation")
22         protected void finalize() throws Throwable {
23                 super.finalize();
24                 if (ptr != 0) { bindings.PositiveTimestamp_free(ptr); }
25         }
26
27         /**
28          * Checks if two PositiveTimestamps 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(PositiveTimestamp b) {
33                 boolean ret = bindings.PositiveTimestamp_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 PositiveTimestamp
40          */
41         public PositiveTimestamp clone() {
42                 long ret = bindings.PositiveTimestamp_clone(this.ptr);
43                 if (ret >= 0 && ret <= 4096) { return null; }
44                 PositiveTimestamp ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new PositiveTimestamp(null, ret); }
45                 ret_hu_conv.ptrs_to.add(this);
46                 return ret_hu_conv;
47         }
48
49         /**
50          * Create a new `PositiveTimestamp` from a unix timestamp in the Range
51          * `0...SYSTEM_TIME_MAX_UNIX_TIMESTAMP - MAX_EXPIRY_TIME`, otherwise return a
52          * `CreationError::TimestampOutOfBounds`.
53          */
54         public static Result_PositiveTimestampCreationErrorZ from_unix_timestamp(long unix_seconds) {
55                 long ret = bindings.PositiveTimestamp_from_unix_timestamp(unix_seconds);
56                 if (ret >= 0 && ret <= 4096) { return null; }
57                 Result_PositiveTimestampCreationErrorZ ret_hu_conv = Result_PositiveTimestampCreationErrorZ.constr_from_ptr(ret);
58                 return ret_hu_conv;
59         }
60
61         /**
62          * Create a new `PositiveTimestamp` from a `SystemTime` with a corresponding unix timestamp in
63          * the Range `0...SYSTEM_TIME_MAX_UNIX_TIMESTAMP - MAX_EXPIRY_TIME`, otherwise return a
64          * `CreationError::TimestampOutOfBounds`.
65          */
66         public static Result_PositiveTimestampCreationErrorZ from_system_time(long time) {
67                 long ret = bindings.PositiveTimestamp_from_system_time(time);
68                 if (ret >= 0 && ret <= 4096) { return null; }
69                 Result_PositiveTimestampCreationErrorZ ret_hu_conv = Result_PositiveTimestampCreationErrorZ.constr_from_ptr(ret);
70                 return ret_hu_conv;
71         }
72
73         /**
74          * Returns the UNIX timestamp representing the stored time
75          */
76         public long as_unix_timestamp() {
77                 long ret = bindings.PositiveTimestamp_as_unix_timestamp(this.ptr);
78                 return ret;
79         }
80
81         /**
82          * Returns a reference to the internal `SystemTime` time representation
83          */
84         public long as_time() {
85                 long ret = bindings.PositiveTimestamp_as_time(this.ptr);
86                 return ret;
87         }
88
89 }