[Java] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / src / main / java / org / ldk / structs / Bolt11InvoiceFeatures.java
index 8cdc3093036dcd87d9d86585f9841e37bf510628..cc4e156dc473a9f2d581d30e1f129eac1694842b 100644 (file)
@@ -26,7 +26,7 @@ public class Bolt11InvoiceFeatures extends CommonBase {
         * Two objects with NULL inner values will be considered "equal" here.
         */
        public boolean eq(org.ldk.structs.Bolt11InvoiceFeatures b) {
-               boolean ret = bindings.Bolt11InvoiceFeatures_eq(this.ptr, b == null ? 0 : b.ptr);
+               boolean ret = bindings.Bolt11InvoiceFeatures_eq(this.ptr, b.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(b);
                if (this != null) { this.ptrs_to.add(b); };
@@ -82,7 +82,7 @@ public class Bolt11InvoiceFeatures extends CommonBase {
         * Returns true if this `Features` object contains required features unknown by `other`.
         */
        public boolean requires_unknown_bits_from(org.ldk.structs.Bolt11InvoiceFeatures other) {
-               boolean ret = bindings.Bolt11InvoiceFeatures_requires_unknown_bits_from(this.ptr, other == null ? 0 : other.ptr);
+               boolean ret = bindings.Bolt11InvoiceFeatures_requires_unknown_bits_from(this.ptr, other.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(other);
                if (this != null) { this.ptrs_to.add(other); };
@@ -327,4 +327,38 @@ public class Bolt11InvoiceFeatures extends CommonBase {
                return ret;
        }
 
+       /**
+        * Set this feature as optional.
+        */
+       public void set_trampoline_routing_optional() {
+               bindings.Bolt11InvoiceFeatures_set_trampoline_routing_optional(this.ptr);
+               Reference.reachabilityFence(this);
+       }
+
+       /**
+        * Set this feature as required.
+        */
+       public void set_trampoline_routing_required() {
+               bindings.Bolt11InvoiceFeatures_set_trampoline_routing_required(this.ptr);
+               Reference.reachabilityFence(this);
+       }
+
+       /**
+        * Checks if this feature is supported.
+        */
+       public boolean supports_trampoline_routing() {
+               boolean ret = bindings.Bolt11InvoiceFeatures_supports_trampoline_routing(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
+       /**
+        * Checks if this feature is required.
+        */
+       public boolean requires_trampoline_routing() {
+               boolean ret = bindings.Bolt11InvoiceFeatures_requires_trampoline_routing(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
 }