X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FInvoiceFeatures.java;h=fd3bc29a780c3491f6ae4d0a582efa1f66e862bb;hp=b5d81330ac706d06c3880c477595b7f544b80984;hb=b6cc0960eaee5a5bbc7fde79a56152d6dcd649d8;hpb=fb06c6af463da9aa188980c750f787f5e936634a diff --git a/src/main/java/org/ldk/structs/InvoiceFeatures.java b/src/main/java/org/ldk/structs/InvoiceFeatures.java index b5d81330..fd3bc29a 100644 --- a/src/main/java/org/ldk/structs/InvoiceFeatures.java +++ b/src/main/java/org/ldk/structs/InvoiceFeatures.java @@ -18,6 +18,17 @@ public class InvoiceFeatures extends CommonBase { if (ptr != 0) { bindings.InvoiceFeatures_free(ptr); } } + /** + * Checks if two InvoiceFeaturess contain equal inner contents. + * This ignores pointers and is_owned flags and looks at the values in fields. + * Two objects with NULL inner values will be considered "equal" here. + */ + public boolean eq(InvoiceFeatures b) { + boolean ret = bindings.InvoiceFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + this.ptrs_to.add(b); + return ret; + } + /** * Creates a copy of the InvoiceFeatures */ @@ -31,7 +42,7 @@ public class InvoiceFeatures extends CommonBase { /** * Create a blank Features with no features set */ - public static InvoiceFeatures constructor_empty() { + public static InvoiceFeatures empty() { long ret = bindings.InvoiceFeatures_empty(); InvoiceFeatures ret_hu_conv = new InvoiceFeatures(null, ret); ret_hu_conv.ptrs_to.add(ret_hu_conv); @@ -41,13 +52,21 @@ public class InvoiceFeatures extends CommonBase { /** * Creates a Features with the bits set which are known by the implementation */ - public static InvoiceFeatures constructor_known() { + public static InvoiceFeatures known() { long ret = bindings.InvoiceFeatures_known(); InvoiceFeatures ret_hu_conv = new InvoiceFeatures(null, ret); ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } + /** + * Returns whether the `payment_secret` feature is supported. + */ + public boolean supports_payment_secret() { + boolean ret = bindings.InvoiceFeatures_supports_payment_secret(this.ptr); + return ret; + } + /** * Serialize the InvoiceFeatures object into a byte array which can be read by InvoiceFeatures_read */ @@ -59,7 +78,7 @@ public class InvoiceFeatures extends CommonBase { /** * Read a InvoiceFeatures from a byte array, created by InvoiceFeatures_write */ - public static Result_InvoiceFeaturesDecodeErrorZ constructor_read(byte[] ser) { + public static Result_InvoiceFeaturesDecodeErrorZ read(byte[] ser) { long ret = bindings.InvoiceFeatures_read(ser); Result_InvoiceFeaturesDecodeErrorZ ret_hu_conv = Result_InvoiceFeaturesDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv;