[Java] Update auto-generated Java bindings for 0.0.116
[ldk-java] / src / main / java / org / ldk / structs / Bolt12InvoiceFeatures.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 Bolt12InvoiceFeatures extends CommonBase {
16         Bolt12InvoiceFeatures(Object _dummy, long ptr) { super(ptr); }
17         @Override @SuppressWarnings("deprecation")
18         protected void finalize() throws Throwable {
19                 super.finalize();
20                 if (ptr != 0) { bindings.Bolt12InvoiceFeatures_free(ptr); }
21         }
22
23         /**
24          * Checks if two Bolt12InvoiceFeaturess 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(org.ldk.structs.Bolt12InvoiceFeatures b) {
29                 boolean ret = bindings.Bolt12InvoiceFeatures_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 Bolt12InvoiceFeatures)) return false;
38                 return this.eq((Bolt12InvoiceFeatures)o);
39         }
40         long clone_ptr() {
41                 long ret = bindings.Bolt12InvoiceFeatures_clone_ptr(this.ptr);
42                 Reference.reachabilityFence(this);
43                 return ret;
44         }
45
46         /**
47          * Creates a copy of the Bolt12InvoiceFeatures
48          */
49         public Bolt12InvoiceFeatures clone() {
50                 long ret = bindings.Bolt12InvoiceFeatures_clone(this.ptr);
51                 Reference.reachabilityFence(this);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 org.ldk.structs.Bolt12InvoiceFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Bolt12InvoiceFeatures(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 Bolt12InvoiceFeatures empty() {
62                 long ret = bindings.Bolt12InvoiceFeatures_empty();
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 org.ldk.structs.Bolt12InvoiceFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.Bolt12InvoiceFeatures(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 required features unknown by `other`.
71          */
72         public boolean requires_unknown_bits_from(org.ldk.structs.Bolt12InvoiceFeatures other) {
73                 boolean ret = bindings.Bolt12InvoiceFeatures_requires_unknown_bits_from(this.ptr, other == null ? 0 : other.ptr);
74                 Reference.reachabilityFence(this);
75                 Reference.reachabilityFence(other);
76                 if (this != null) { this.ptrs_to.add(other); };
77                 return ret;
78         }
79
80         /**
81          * Returns true if this `Features` object contains unknown feature flags which are set as
82          * \"required\".
83          */
84         public boolean requires_unknown_bits() {
85                 boolean ret = bindings.Bolt12InvoiceFeatures_requires_unknown_bits(this.ptr);
86                 Reference.reachabilityFence(this);
87                 return ret;
88         }
89
90         /**
91          * Sets a required custom feature bit. Errors if `bit` is outside the custom range as defined
92          * by [bLIP 2] or if it is a known `T` feature.
93          * 
94          * Note: Required bits are even. If an odd bit is given, then the corresponding even bit will
95          * be set instead (i.e., `bit - 1`).
96          * 
97          * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
98          */
99         public Result_NoneNoneZ set_required_custom_bit(long bit) {
100                 long ret = bindings.Bolt12InvoiceFeatures_set_required_custom_bit(this.ptr, bit);
101                 Reference.reachabilityFence(this);
102                 Reference.reachabilityFence(bit);
103                 if (ret >= 0 && ret <= 4096) { return null; }
104                 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
105                 return ret_hu_conv;
106         }
107
108         /**
109          * Sets an optional custom feature bit. Errors if `bit` is outside the custom range as defined
110          * by [bLIP 2] or if it is a known `T` feature.
111          * 
112          * Note: Optional bits are odd. If an even bit is given, then the corresponding odd bit will be
113          * set instead (i.e., `bit + 1`).
114          * 
115          * [bLIP 2]: https://github.com/lightning/blips/blob/master/blip-0002.md#feature-bits
116          */
117         public Result_NoneNoneZ set_optional_custom_bit(long bit) {
118                 long ret = bindings.Bolt12InvoiceFeatures_set_optional_custom_bit(this.ptr, bit);
119                 Reference.reachabilityFence(this);
120                 Reference.reachabilityFence(bit);
121                 if (ret >= 0 && ret <= 4096) { return null; }
122                 Result_NoneNoneZ ret_hu_conv = Result_NoneNoneZ.constr_from_ptr(ret);
123                 return ret_hu_conv;
124         }
125
126         /**
127          * Serialize the Bolt12InvoiceFeatures object into a byte array which can be read by Bolt12InvoiceFeatures_read
128          */
129         public byte[] write() {
130                 byte[] ret = bindings.Bolt12InvoiceFeatures_write(this.ptr);
131                 Reference.reachabilityFence(this);
132                 return ret;
133         }
134
135         /**
136          * Read a Bolt12InvoiceFeatures from a byte array, created by Bolt12InvoiceFeatures_write
137          */
138         public static Result_Bolt12InvoiceFeaturesDecodeErrorZ read(byte[] ser) {
139                 long ret = bindings.Bolt12InvoiceFeatures_read(ser);
140                 Reference.reachabilityFence(ser);
141                 if (ret >= 0 && ret <= 4096) { return null; }
142                 Result_Bolt12InvoiceFeaturesDecodeErrorZ ret_hu_conv = Result_Bolt12InvoiceFeaturesDecodeErrorZ.constr_from_ptr(ret);
143                 return ret_hu_conv;
144         }
145
146         /**
147          * Set this feature as optional.
148          */
149         public void set_basic_mpp_optional() {
150                 bindings.Bolt12InvoiceFeatures_set_basic_mpp_optional(this.ptr);
151                 Reference.reachabilityFence(this);
152         }
153
154         /**
155          * Set this feature as required.
156          */
157         public void set_basic_mpp_required() {
158                 bindings.Bolt12InvoiceFeatures_set_basic_mpp_required(this.ptr);
159                 Reference.reachabilityFence(this);
160         }
161
162         /**
163          * Checks if this feature is supported.
164          */
165         public boolean supports_basic_mpp() {
166                 boolean ret = bindings.Bolt12InvoiceFeatures_supports_basic_mpp(this.ptr);
167                 Reference.reachabilityFence(this);
168                 return ret;
169         }
170
171         /**
172          * Checks if this feature is required.
173          */
174         public boolean requires_basic_mpp() {
175                 boolean ret = bindings.Bolt12InvoiceFeatures_requires_basic_mpp(this.ptr);
176                 Reference.reachabilityFence(this);
177                 return ret;
178         }
179
180 }