X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelFeatures.java;h=04395a4e394705fc38661366e9c1c0463287da43;hb=b6cc0960eaee5a5bbc7fde79a56152d6dcd649d8;hp=bac024ad142aed562747554b8cd604d86d6aadd7;hpb=1b870a3ffab1c0024411e30102bc6d198300f095;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelFeatures.java b/src/main/java/org/ldk/structs/ChannelFeatures.java index bac024ad..04395a4e 100644 --- a/src/main/java/org/ldk/structs/ChannelFeatures.java +++ b/src/main/java/org/ldk/structs/ChannelFeatures.java @@ -18,6 +18,17 @@ public class ChannelFeatures extends CommonBase { if (ptr != 0) { bindings.ChannelFeatures_free(ptr); } } + /** + * Checks if two ChannelFeaturess 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(ChannelFeatures b) { + boolean ret = bindings.ChannelFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + this.ptrs_to.add(b); + return ret; + } + /** * Creates a copy of the ChannelFeatures */ @@ -31,7 +42,7 @@ public class ChannelFeatures extends CommonBase { /** * Create a blank Features with no features set */ - public static ChannelFeatures constructor_empty() { + public static ChannelFeatures empty() { long ret = bindings.ChannelFeatures_empty(); ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret); ret_hu_conv.ptrs_to.add(ret_hu_conv); @@ -39,11 +50,9 @@ public class ChannelFeatures 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 ChannelFeatures constructor_known() { + public static ChannelFeatures known() { long ret = bindings.ChannelFeatures_known(); ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret); ret_hu_conv.ptrs_to.add(ret_hu_conv); @@ -61,7 +70,7 @@ public class ChannelFeatures extends CommonBase { /** * Read a ChannelFeatures from a byte array, created by ChannelFeatures_write */ - public static Result_ChannelFeaturesDecodeErrorZ constructor_read(byte[] ser) { + public static Result_ChannelFeaturesDecodeErrorZ read(byte[] ser) { long ret = bindings.ChannelFeatures_read(ser); Result_ChannelFeaturesDecodeErrorZ ret_hu_conv = Result_ChannelFeaturesDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv;