X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FNodeFeatures.java;h=04f3c55c9d05f0096ba724477257659db041cf2e;hb=b6cc0960eaee5a5bbc7fde79a56152d6dcd649d8;hp=b4d09e7188bf6b9382710e485b7a5ede11aaf068;hpb=17113550a5fefab21f39f27fbfe02646b8db53ae;p=ldk-java diff --git a/src/main/java/org/ldk/structs/NodeFeatures.java b/src/main/java/org/ldk/structs/NodeFeatures.java index b4d09e71..04f3c55c 100644 --- a/src/main/java/org/ldk/structs/NodeFeatures.java +++ b/src/main/java/org/ldk/structs/NodeFeatures.java @@ -18,6 +18,17 @@ public class NodeFeatures extends CommonBase { if (ptr != 0) { bindings.NodeFeatures_free(ptr); } } + /** + * Checks if two NodeFeaturess 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(NodeFeatures b) { + boolean ret = bindings.NodeFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + this.ptrs_to.add(b); + return ret; + } + /** * Creates a copy of the NodeFeatures */ @@ -31,7 +42,7 @@ public class NodeFeatures extends CommonBase { /** * Create a blank Features with no features set */ - public static NodeFeatures constructor_empty() { + public static NodeFeatures empty() { long ret = bindings.NodeFeatures_empty(); NodeFeatures ret_hu_conv = new NodeFeatures(null, ret); ret_hu_conv.ptrs_to.add(ret_hu_conv); @@ -39,17 +50,23 @@ public class NodeFeatures extends CommonBase { } /** - * Creates features known by the implementation as defined by [`T::KNOWN_FEATURE_FLAGS`]. - * - * [`T::KNOWN_FEATURE_FLAGS`]: sealed/trait.Context.html#associatedconstant.KNOWN_FEATURE_FLAGS + * Creates a Features with the bits set which are known by the implementation */ - public static NodeFeatures constructor_known() { + public static NodeFeatures known() { long ret = bindings.NodeFeatures_known(); NodeFeatures ret_hu_conv = new NodeFeatures(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.NodeFeatures_supports_payment_secret(this.ptr); + return ret; + } + /** * Serialize the NodeFeatures object into a byte array which can be read by NodeFeatures_read */ @@ -61,7 +78,7 @@ public class NodeFeatures extends CommonBase { /** * Read a NodeFeatures from a byte array, created by NodeFeatures_write */ - public static Result_NodeFeaturesDecodeErrorZ constructor_read(byte[] ser) { + public static Result_NodeFeaturesDecodeErrorZ read(byte[] ser) { long ret = bindings.NodeFeatures_read(ser); Result_NodeFeaturesDecodeErrorZ ret_hu_conv = Result_NodeFeaturesDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv;