[Java] Update auto-generated Java bindings
[ldk-java] / src / main / java / org / ldk / structs / InvoiceFeatures.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 java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10
11 /**
12  * Features used within an invoice.
13  */
14 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
15 public class InvoiceFeatures extends CommonBase {
16         InvoiceFeatures(Object _dummy, long ptr) { super(ptr); }
17         @Override @SuppressWarnings("deprecation")
18         protected void finalize() throws Throwable {
19                 super.finalize();
20                 if (ptr != 0) { bindings.InvoiceFeatures_free(ptr); }
21         }
22
23         /**
24          * Checks if two InvoiceFeaturess contain equal inner contents.
25          * This ignores pointers and is_owned flags and looks at the values in fields.
26          * Two objects with NULL inner values will be considered "equal" here.
27          */
28         public boolean eq(InvoiceFeatures b) {
29                 boolean ret = bindings.InvoiceFeatures_eq(this.ptr, b == null ? 0 : b.ptr);
30                 Reference.reachabilityFence(this);
31                 Reference.reachabilityFence(b);
32                 if (this != null) { this.ptrs_to.add(b); };
33                 return ret;
34         }
35
36         @Override public boolean equals(Object o) {
37                 if (!(o instanceof InvoiceFeatures)) return false;
38                 return this.eq((InvoiceFeatures)o);
39         }
40         long clone_ptr() {
41                 long ret = bindings.InvoiceFeatures_clone_ptr(this.ptr);
42                 Reference.reachabilityFence(this);
43                 return ret;
44         }
45
46         /**
47          * Creates a copy of the InvoiceFeatures
48          */
49         public InvoiceFeatures clone() {
50                 long ret = bindings.InvoiceFeatures_clone(this.ptr);
51                 Reference.reachabilityFence(this);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 org.ldk.structs.InvoiceFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.InvoiceFeatures(null, ret); }
54                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Create a blank Features with no features set
60          */
61         public static InvoiceFeatures empty() {
62                 long ret = bindings.InvoiceFeatures_empty();
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 org.ldk.structs.InvoiceFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.InvoiceFeatures(null, ret); }
65                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
66                 return ret_hu_conv;
67         }
68
69         /**
70          * Returns true if this `Features` object contains unknown feature flags which are set as
71          * \"required\".
72          */
73         public boolean requires_unknown_bits() {
74                 boolean ret = bindings.InvoiceFeatures_requires_unknown_bits(this.ptr);
75                 Reference.reachabilityFence(this);
76                 return ret;
77         }
78
79         /**
80          * Serialize the InvoiceFeatures object into a byte array which can be read by InvoiceFeatures_read
81          */
82         public byte[] write() {
83                 byte[] ret = bindings.InvoiceFeatures_write(this.ptr);
84                 Reference.reachabilityFence(this);
85                 return ret;
86         }
87
88         /**
89          * Read a InvoiceFeatures from a byte array, created by InvoiceFeatures_write
90          */
91         public static Result_InvoiceFeaturesDecodeErrorZ read(byte[] ser) {
92                 long ret = bindings.InvoiceFeatures_read(ser);
93                 Reference.reachabilityFence(ser);
94                 if (ret >= 0 && ret <= 4096) { return null; }
95                 Result_InvoiceFeaturesDecodeErrorZ ret_hu_conv = Result_InvoiceFeaturesDecodeErrorZ.constr_from_ptr(ret);
96                 return ret_hu_conv;
97         }
98
99         /**
100          * Set this feature as optional.
101          */
102         public void set_variable_length_onion_optional() {
103                 bindings.InvoiceFeatures_set_variable_length_onion_optional(this.ptr);
104                 Reference.reachabilityFence(this);
105         }
106
107         /**
108          * Set this feature as required.
109          */
110         public void set_variable_length_onion_required() {
111                 bindings.InvoiceFeatures_set_variable_length_onion_required(this.ptr);
112                 Reference.reachabilityFence(this);
113         }
114
115         /**
116          * Checks if this feature is supported.
117          */
118         public boolean supports_variable_length_onion() {
119                 boolean ret = bindings.InvoiceFeatures_supports_variable_length_onion(this.ptr);
120                 Reference.reachabilityFence(this);
121                 return ret;
122         }
123
124         /**
125          * Checks if this feature is required.
126          */
127         public boolean requires_variable_length_onion() {
128                 boolean ret = bindings.InvoiceFeatures_requires_variable_length_onion(this.ptr);
129                 Reference.reachabilityFence(this);
130                 return ret;
131         }
132
133         /**
134          * Set this feature as optional.
135          */
136         public void set_payment_secret_optional() {
137                 bindings.InvoiceFeatures_set_payment_secret_optional(this.ptr);
138                 Reference.reachabilityFence(this);
139         }
140
141         /**
142          * Set this feature as required.
143          */
144         public void set_payment_secret_required() {
145                 bindings.InvoiceFeatures_set_payment_secret_required(this.ptr);
146                 Reference.reachabilityFence(this);
147         }
148
149         /**
150          * Checks if this feature is supported.
151          */
152         public boolean supports_payment_secret() {
153                 boolean ret = bindings.InvoiceFeatures_supports_payment_secret(this.ptr);
154                 Reference.reachabilityFence(this);
155                 return ret;
156         }
157
158         /**
159          * Checks if this feature is required.
160          */
161         public boolean requires_payment_secret() {
162                 boolean ret = bindings.InvoiceFeatures_requires_payment_secret(this.ptr);
163                 Reference.reachabilityFence(this);
164                 return ret;
165         }
166
167         /**
168          * Set this feature as optional.
169          */
170         public void set_basic_mpp_optional() {
171                 bindings.InvoiceFeatures_set_basic_mpp_optional(this.ptr);
172                 Reference.reachabilityFence(this);
173         }
174
175         /**
176          * Set this feature as required.
177          */
178         public void set_basic_mpp_required() {
179                 bindings.InvoiceFeatures_set_basic_mpp_required(this.ptr);
180                 Reference.reachabilityFence(this);
181         }
182
183         /**
184          * Checks if this feature is supported.
185          */
186         public boolean supports_basic_mpp() {
187                 boolean ret = bindings.InvoiceFeatures_supports_basic_mpp(this.ptr);
188                 Reference.reachabilityFence(this);
189                 return ret;
190         }
191
192         /**
193          * Checks if this feature is required.
194          */
195         public boolean requires_basic_mpp() {
196                 boolean ret = bindings.InvoiceFeatures_requires_basic_mpp(this.ptr);
197                 Reference.reachabilityFence(this);
198                 return ret;
199         }
200
201 }