Update auto-generated bindings with new upstream.
[ldk-java] / src / main / java / org / ldk / structs / ChannelFeatures.java
index 97bba12d5ded1bf2552b5738f6f6d441c2df840f..7b10e51bf73b03276b062101feda6a0961b21841 100644 (file)
@@ -11,7 +11,39 @@ public class ChannelFeatures extends CommonBase {
        @Override @SuppressWarnings("deprecation")
        protected void finalize() throws Throwable {
                super.finalize();
-               bindings.ChannelFeatures_free(ptr);
+               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;
        }
 
 }