X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelFeatures.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelFeatures.java;h=7b10e51bf73b03276b062101feda6a0961b21841;hb=246459dcbc3be28c38b4951140a5933f4b3aa024;hp=428ed8b7d8733fb30107a1aba6bb402255da3669;hpb=b52dde859c138f9257499496749d1eb89f9f6f43;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelFeatures.java b/src/main/java/org/ldk/structs/ChannelFeatures.java index 428ed8b7..7b10e51b 100644 --- a/src/main/java/org/ldk/structs/ChannelFeatures.java +++ b/src/main/java/org/ldk/structs/ChannelFeatures.java @@ -14,4 +14,36 @@ public class ChannelFeatures extends CommonBase { if (ptr != 0) { bindings.ChannelFeatures_free(ptr); } } + public ChannelFeatures clone() { + long ret = bindings.ChannelFeatures_clone(this.ptr); + ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret); + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + public static ChannelFeatures constructor_empty() { + long ret = bindings.ChannelFeatures_empty(); + ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public static ChannelFeatures constructor_known() { + long ret = bindings.ChannelFeatures_known(); + ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public byte[] write() { + byte[] ret = bindings.ChannelFeatures_write(this.ptr); + return ret; + } + + public static Result_ChannelFeaturesDecodeErrorZ constructor_read(byte[] ser) { + long ret = bindings.ChannelFeatures_read(ser); + Result_ChannelFeaturesDecodeErrorZ ret_hu_conv = Result_ChannelFeaturesDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }