Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Description.java
index 6be70625c0286fca3ec914da8bd3a7ca93726b7e..8e8f68ff63dabcac67d6068c943755d5d32403f5 100644 (file)
@@ -22,14 +22,8 @@ public class Description extends CommonBase {
                if (ptr != 0) { bindings.Description_free(ptr); }
        }
 
-       /**
-        * Checks if two Descriptions 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(Description b) {
-               boolean ret = bindings.Description_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
-               this.ptrs_to.add(b);
+       long clone_ptr() {
+               long ret = bindings.Description_clone_ptr(this.ptr);
                return ret;
        }
 
@@ -38,12 +32,31 @@ public class Description extends CommonBase {
         */
        public Description clone() {
                long ret = bindings.Description_clone(this.ptr);
-               if (ret < 1024) { return null; }
-               Description ret_hu_conv = new Description(null, ret);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Description ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new Description(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
 
+       /**
+        * Checks if two Descriptions contain equal inner contents.
+        */
+       public long hash() {
+               long ret = bindings.Description_hash(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Checks if two Descriptions 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(Description b) {
+               boolean ret = bindings.Description_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               this.ptrs_to.add(b);
+               return ret;
+       }
+
        /**
         * Creates a new `Description` if `description` is at most 1023 __bytes__ long,
         * returns `CreationError::DescriptionTooLong` otherwise
@@ -52,7 +65,7 @@ public class Description extends CommonBase {
         */
        public static Result_DescriptionCreationErrorZ of(java.lang.String description) {
                long ret = bindings.Description_new(description);
-               if (ret < 1024) { return null; }
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_DescriptionCreationErrorZ ret_hu_conv = Result_DescriptionCreationErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }
@@ -62,7 +75,7 @@ public class Description extends CommonBase {
         */
        public String into_inner() {
                String ret = bindings.Description_into_inner(this.ptr);
-               this.ptrs_to.add(this);
+               ;
                return ret;
        }