X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelInfo.java;h=84b22d2304c59b01115d872b680bfe422b784cc4;hb=5d91c4ade4b5f736d100428ccf84709ad29f971d;hp=db9f3589bac668671062d87ce8f165f48b7d6f05;hpb=3c60e0fd0da579be9932801c1be2b32014c944a5;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelInfo.java b/src/main/java/org/ldk/structs/ChannelInfo.java index db9f3589..84b22d23 100644 --- a/src/main/java/org/ldk/structs/ChannelInfo.java +++ b/src/main/java/org/ldk/structs/ChannelInfo.java @@ -36,8 +36,8 @@ public class ChannelInfo extends CommonBase { /** * Protocol features of a channel communicated during its announcement */ - public void set_features(ChannelFeatures val) { - bindings.ChannelInfo_set_features(this.ptr, val == null ? 0 : val.ptr); + public void set_features(org.ldk.structs.ChannelFeatures val) { + bindings.ChannelInfo_set_features(this.ptr, val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); if (this != null) { this.ptrs_to.add(val); }; @@ -58,8 +58,8 @@ public class ChannelInfo extends CommonBase { /** * Source node of the first direction of a channel */ - public void set_node_one(NodeId val) { - bindings.ChannelInfo_set_node_one(this.ptr, val == null ? 0 : val.ptr); + public void set_node_one(org.ldk.structs.NodeId val) { + bindings.ChannelInfo_set_node_one(this.ptr, val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); if (this != null) { this.ptrs_to.add(val); }; @@ -85,7 +85,7 @@ public class ChannelInfo extends CommonBase { * * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None */ - public void set_one_to_two(@Nullable ChannelUpdateInfo val) { + public void set_one_to_two(@Nullable org.ldk.structs.ChannelUpdateInfo val) { bindings.ChannelInfo_set_one_to_two(this.ptr, val == null ? 0 : val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); @@ -107,8 +107,8 @@ public class ChannelInfo extends CommonBase { /** * Source node of the second direction of a channel */ - public void set_node_two(NodeId val) { - bindings.ChannelInfo_set_node_two(this.ptr, val == null ? 0 : val.ptr); + public void set_node_two(org.ldk.structs.NodeId val) { + bindings.ChannelInfo_set_node_two(this.ptr, val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); if (this != null) { this.ptrs_to.add(val); }; @@ -134,7 +134,7 @@ public class ChannelInfo extends CommonBase { * * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None */ - public void set_two_to_one(@Nullable ChannelUpdateInfo val) { + public void set_two_to_one(@Nullable org.ldk.structs.ChannelUpdateInfo val) { bindings.ChannelInfo_set_two_to_one(this.ptr, val == null ? 0 : val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); @@ -156,10 +156,11 @@ public class ChannelInfo extends CommonBase { /** * The channel capacity as seen on-chain, if chain lookup is available. */ - public void set_capacity_sats(Option_u64Z val) { + public void set_capacity_sats(org.ldk.structs.Option_u64Z val) { bindings.ChannelInfo_set_capacity_sats(this.ptr, val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; } /** @@ -188,7 +189,7 @@ public class ChannelInfo extends CommonBase { * * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None */ - public void set_announcement_message(@Nullable ChannelAnnouncement val) { + public void set_announcement_message(@Nullable org.ldk.structs.ChannelAnnouncement val) { bindings.ChannelInfo_set_announcement_message(this.ptr, val == null ? 0 : val.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(val); @@ -213,6 +214,23 @@ public class ChannelInfo extends CommonBase { return ret_hu_conv; } + /** + * Checks if two ChannelInfos 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(org.ldk.structs.ChannelInfo b) { + boolean ret = bindings.ChannelInfo_eq(this.ptr, b.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(b); + if (this != null) { this.ptrs_to.add(b); }; + return ret; + } + + @Override public boolean equals(Object o) { + if (!(o instanceof ChannelInfo)) return false; + return this.eq((ChannelInfo)o); + } /** * Returns a [`ChannelUpdateInfo`] based on the direction implied by the channel_flag. * @@ -229,6 +247,15 @@ public class ChannelInfo extends CommonBase { return ret_hu_conv; } + /** + * Get the string representation of a ChannelInfo object + */ + public String to_str() { + String ret = bindings.ChannelInfo_to_str(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + /** * Serialize the ChannelInfo object into a byte array which can be read by ChannelInfo_read */