Update auto-generated bindings to 0.0.103
[ldk-java] / src / main / java / org / ldk / structs / Description.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import javax.annotation.Nullable;
8
9
10 /**
11  * Description string
12  * 
13  * # Invariants
14  * The description can be at most 639 __bytes__ long
15  */
16 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
17 public class Description extends CommonBase {
18         Description(Object _dummy, long ptr) { super(ptr); }
19         @Override @SuppressWarnings("deprecation")
20         protected void finalize() throws Throwable {
21                 super.finalize();
22                 if (ptr != 0) { bindings.Description_free(ptr); }
23         }
24
25         /**
26          * Creates a copy of the Description
27          */
28         public Description clone() {
29                 long ret = bindings.Description_clone(this.ptr);
30                 if (ret >= 0 && ret <= 4096) { return null; }
31                 Description ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new Description(null, ret); }
32                 ret_hu_conv.ptrs_to.add(this);
33                 return ret_hu_conv;
34         }
35
36         /**
37          * Checks if two Descriptions contain equal inner contents.
38          */
39         public long hash() {
40                 long ret = bindings.Description_hash(this.ptr);
41                 return ret;
42         }
43
44         /**
45          * Checks if two Descriptions contain equal inner contents.
46          * This ignores pointers and is_owned flags and looks at the values in fields.
47          * Two objects with NULL inner values will be considered "equal" here.
48          */
49         public boolean eq(Description b) {
50                 boolean ret = bindings.Description_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
51                 this.ptrs_to.add(b);
52                 return ret;
53         }
54
55         /**
56          * Creates a new `Description` if `description` is at most 1023 __bytes__ long,
57          * returns `CreationError::DescriptionTooLong` otherwise
58          * 
59          * Please note that single characters may use more than one byte due to UTF8 encoding.
60          */
61         public static Result_DescriptionCreationErrorZ of(java.lang.String description) {
62                 long ret = bindings.Description_new(description);
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 Result_DescriptionCreationErrorZ ret_hu_conv = Result_DescriptionCreationErrorZ.constr_from_ptr(ret);
65                 return ret_hu_conv;
66         }
67
68         /**
69          * Returns the underlying description `String`
70          */
71         public String into_inner() {
72                 String ret = bindings.Description_into_inner(this.ptr);
73                 ;
74                 return ret;
75         }
76
77 }