Merge pull request #33 from TheBlueMatt/main
[ldk-java] / src / main / java / org / ldk / structs / ChannelFeatures.java
index bac024ad142aed562747554b8cd604d86d6aadd7..c0e61d0a0ebca0b6399e5e0a4789a088cd0282f7 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;
 
 
 /**
@@ -18,11 +19,23 @@ public class ChannelFeatures extends CommonBase {
                if (ptr != 0) { bindings.ChannelFeatures_free(ptr); }
        }
 
+       /**
+        * Checks if two ChannelFeaturess contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        * Two objects with NULL inner values will be considered "equal" here.
+        */
+       public boolean eq(ChannelFeatures b) {
+               boolean ret = bindings.ChannelFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               this.ptrs_to.add(b);
+               return ret;
+       }
+
        /**
         * Creates a copy of the ChannelFeatures
         */
        public ChannelFeatures clone() {
                long ret = bindings.ChannelFeatures_clone(this.ptr);
+               if (ret < 1024) { return null; }
                ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret);
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
@@ -31,20 +44,20 @@ public class ChannelFeatures extends CommonBase {
        /**
         * Create a blank Features with no features set
         */
-       public static ChannelFeatures constructor_empty() {
+       public static ChannelFeatures empty() {
                long ret = bindings.ChannelFeatures_empty();
+               if (ret < 1024) { return null; }
                ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                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
+        * Creates a Features with the bits set which are known by the implementation
         */
-       public static ChannelFeatures constructor_known() {
+       public static ChannelFeatures known() {
                long ret = bindings.ChannelFeatures_known();
+               if (ret < 1024) { return null; }
                ChannelFeatures ret_hu_conv = new ChannelFeatures(null, ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
@@ -61,8 +74,9 @@ public class ChannelFeatures extends CommonBase {
        /**
         * Read a ChannelFeatures from a byte array, created by ChannelFeatures_write
         */
-       public static Result_ChannelFeaturesDecodeErrorZ constructor_read(byte[] ser) {
+       public static Result_ChannelFeaturesDecodeErrorZ read(byte[] ser) {
                long ret = bindings.ChannelFeatures_read(ser);
+               if (ret < 1024) { return null; }
                Result_ChannelFeaturesDecodeErrorZ ret_hu_conv = Result_ChannelFeaturesDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }