Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Description.java
diff --git a/src/main/java/org/ldk/structs/Description.java b/src/main/java/org/ldk/structs/Description.java
new file mode 100644 (file)
index 0000000..b9b165c
--- /dev/null
@@ -0,0 +1,66 @@
+package org.ldk.structs;
+
+import org.ldk.impl.bindings;
+import org.ldk.enums.*;
+import org.ldk.util.*;
+import java.util.Arrays;
+
+
+/**
+ * Description string
+ * 
+ * # Invariants
+ * The description can be at most 639 __bytes__ long
+ */
+@SuppressWarnings("unchecked") // We correctly assign various generic arrays
+public class Description extends CommonBase {
+       Description(Object _dummy, long ptr) { super(ptr); }
+       @Override @SuppressWarnings("deprecation")
+       protected void finalize() throws Throwable {
+               super.finalize();
+               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);
+               return ret;
+       }
+
+       /**
+        * Creates a copy of the Description
+        */
+       public Description clone() {
+               long ret = bindings.Description_clone(this.ptr);
+               Description ret_hu_conv = new Description(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new `Description` if `description` is at most 1023 __bytes__ long,
+        * returns `CreationError::DescriptionTooLong` otherwise
+        * 
+        * Please note that single characters may use more than one byte due to UTF8 encoding.
+        */
+       public static Result_DescriptionCreationErrorZ of(String description) {
+               long ret = bindings.Description_new(description);
+               Result_DescriptionCreationErrorZ ret_hu_conv = Result_DescriptionCreationErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Returns the underlying description `String`
+        */
+       public String into_inner() {
+               String ret = bindings.Description_into_inner(this.ptr);
+               this.ptrs_to.add(this);
+               return ret;
+       }
+
+}