Update auto-generated bindings to 0.0.103
[ldk-java] / src / main / java / org / ldk / structs / NodeFeatures.java
index 04f3c55c9d05f0096ba724477257659db041cf2e..ebd78144b187394dd7c8441ff753908cf3bbebd5 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import javax.annotation.Nullable;
 
 
 /**
@@ -34,7 +35,8 @@ public class NodeFeatures extends CommonBase {
         */
        public NodeFeatures clone() {
                long ret = bindings.NodeFeatures_clone(this.ptr);
-               NodeFeatures ret_hu_conv = new NodeFeatures(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new NodeFeatures(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
@@ -44,7 +46,8 @@ public class NodeFeatures extends CommonBase {
         */
        public static NodeFeatures empty() {
                long ret = bindings.NodeFeatures_empty();
-               NodeFeatures ret_hu_conv = new NodeFeatures(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new NodeFeatures(null, ret); }
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
@@ -54,11 +57,21 @@ public class NodeFeatures extends CommonBase {
         */
        public static NodeFeatures known() {
                long ret = bindings.NodeFeatures_known();
-               NodeFeatures ret_hu_conv = new NodeFeatures(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new NodeFeatures(null, ret); }
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
+       /**
+        * Returns true if this `Features` object contains unknown feature flags which are set as
+        * \"required\".
+        */
+       public boolean requires_unknown_bits() {
+               boolean ret = bindings.NodeFeatures_requires_unknown_bits(this.ptr);
+               return ret;
+       }
+
        /**
         * Returns whether the `payment_secret` feature is supported.
         */
@@ -80,6 +93,7 @@ public class NodeFeatures extends CommonBase {
         */
        public static Result_NodeFeaturesDecodeErrorZ read(byte[] ser) {
                long ret = bindings.NodeFeatures_read(ser);
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_NodeFeaturesDecodeErrorZ ret_hu_conv = Result_NodeFeaturesDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }