Update java bindings with new generator and new upstream code
[ldk-java] / src / main / java / org / ldk / structs / InitFeatures.java
index 2ab513ac31e753c20f26a8780156bd69a377b88c..38195c910e168bb0ef21ed16ce95afd24d65e261 100644 (file)
@@ -5,6 +5,10 @@ import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
 
+
+/**
+ * Features used within an `init` message.
+ */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class InitFeatures extends CommonBase {
        InitFeatures(Object _dummy, long ptr) { super(ptr); }
@@ -14,6 +18,9 @@ public class InitFeatures extends CommonBase {
                if (ptr != 0) { bindings.InitFeatures_free(ptr); }
        }
 
+       /**
+        * Creates a copy of the InitFeatures
+        */
        public InitFeatures clone() {
                long ret = bindings.InitFeatures_clone(this.ptr);
                InitFeatures ret_hu_conv = new InitFeatures(null, ret);
@@ -21,6 +28,9 @@ public class InitFeatures extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Create a blank Features with no features set
+        */
        public static InitFeatures constructor_empty() {
                long ret = bindings.InitFeatures_empty();
                InitFeatures ret_hu_conv = new InitFeatures(null, ret);
@@ -28,6 +38,11 @@ public class InitFeatures extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * 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
+        */
        public static InitFeatures constructor_known() {
                long ret = bindings.InitFeatures_known();
                InitFeatures ret_hu_conv = new InitFeatures(null, ret);
@@ -35,11 +50,17 @@ public class InitFeatures extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Serialize the InitFeatures object into a byte array which can be read by InitFeatures_read
+        */
        public byte[] write() {
                byte[] ret = bindings.InitFeatures_write(this.ptr);
                return ret;
        }
 
+       /**
+        * Read a InitFeatures from a byte array, created by InitFeatures_write
+        */
        public static Result_InitFeaturesDecodeErrorZ constructor_read(byte[] ser) {
                long ret = bindings.InitFeatures_read(ser);
                Result_InitFeaturesDecodeErrorZ ret_hu_conv = Result_InitFeaturesDecodeErrorZ.constr_from_ptr(ret);