X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FReplyShortChannelIdsEnd.java;h=488e7dfe7e566137f12d809379c6b378bbfee468;hb=c6bac88847b7c09560af81f00ba8dd3c2ebe3a19;hp=947ca85acdab71a920ba860c490f3f792519b24a;hpb=110f2f104ba8fc34caa7e34e04737f36f064b050;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java b/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java index 947ca85a..488e7dfe 100644 --- a/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java +++ b/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java @@ -4,57 +4,94 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import javax.annotation.Nullable; + +/** + * A reply_short_channel_ids_end message is sent as a reply to a + * query_short_channel_ids message. The query recipient makes a best + * effort to respond based on their local network view which may not be + * a perfect view of the network. + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class ReplyShortChannelIdsEnd extends CommonBase { ReplyShortChannelIdsEnd(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.ReplyShortChannelIdsEnd_free(ptr); - } - - public static ReplyShortChannelIdsEnd constructor_clone(ReplyShortChannelIdsEnd orig) { - long ret = bindings.ReplyShortChannelIdsEnd_clone(orig == null ? 0 : orig.ptr & ~1); - ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); - ret_hu_conv.ptrs_to.add(orig); - return ret_hu_conv; + if (ptr != 0) { bindings.ReplyShortChannelIdsEnd_free(ptr); } } + /** + * The genesis hash of the blockchain that was queried + */ public byte[] get_chain_hash() { byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr); return ret; } + /** + * The genesis hash of the blockchain that was queried + */ public void set_chain_hash(byte[] val) { bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, val); } + /** + * Indicates if the query recipient maintains up-to-date channel + * information for the chain_hash + */ public boolean get_full_information() { boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr); return ret; } + /** + * Indicates if the query recipient maintains up-to-date channel + * information for the chain_hash + */ public void set_full_information(boolean val) { bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val); } - public static ReplyShortChannelIdsEnd constructor_new(byte[] chain_hash_arg, boolean full_information_arg) { + /** + * Constructs a new ReplyShortChannelIdsEnd given each field + */ + public static ReplyShortChannelIdsEnd of(byte[] chain_hash_arg, boolean full_information_arg) { long ret = bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg); - ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + ReplyShortChannelIdsEnd ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); } + ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } - public static ReplyShortChannelIdsEnd constructor_read(byte[] ser) { - long ret = bindings.ReplyShortChannelIdsEnd_read(ser); - ReplyShortChannelIdsEnd ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); + /** + * Creates a copy of the ReplyShortChannelIdsEnd + */ + public ReplyShortChannelIdsEnd clone() { + long ret = bindings.ReplyShortChannelIdsEnd_clone(this.ptr); + if (ret >= 0 && ret <= 4096) { return null; } + ReplyShortChannelIdsEnd ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); } + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } - public byte[] write(ReplyShortChannelIdsEnd obj) { - byte[] ret = bindings.ReplyShortChannelIdsEnd_write(obj == null ? 0 : obj.ptr & ~1); - this.ptrs_to.add(obj); + /** + * Serialize the ReplyShortChannelIdsEnd object into a byte array which can be read by ReplyShortChannelIdsEnd_read + */ + public byte[] write() { + byte[] ret = bindings.ReplyShortChannelIdsEnd_write(this.ptr); return ret; } + /** + * Read a ReplyShortChannelIdsEnd from a byte array, created by ReplyShortChannelIdsEnd_write + */ + public static Result_ReplyShortChannelIdsEndDecodeErrorZ read(byte[] ser) { + long ret = bindings.ReplyShortChannelIdsEnd_read(ser); + if (ret >= 0 && ret <= 4096) { return null; } + Result_ReplyShortChannelIdsEndDecodeErrorZ ret_hu_conv = Result_ReplyShortChannelIdsEndDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }