X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FDescription.java;h=707fff23af366e60af6894255701d16493308e15;hb=c6bac88847b7c09560af81f00ba8dd3c2ebe3a19;hp=b9b165c17239dd9758177e38884fa60fba642f2a;hpb=b0c50b891cbca28d3bd1d86276c132ff5221d8e4;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Description.java b/src/main/java/org/ldk/structs/Description.java index b9b165c1..707fff23 100644 --- a/src/main/java/org/ldk/structs/Description.java +++ b/src/main/java/org/ldk/structs/Description.java @@ -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; /** @@ -21,6 +22,25 @@ public class Description extends CommonBase { if (ptr != 0) { bindings.Description_free(ptr); } } + /** + * Creates a copy of the Description + */ + public Description clone() { + long ret = bindings.Description_clone(this.ptr); + 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. @@ -32,24 +52,15 @@ public class Description extends CommonBase { 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) { + public static Result_DescriptionCreationErrorZ of(java.lang.String description) { long ret = bindings.Description_new(description); + if (ret >= 0 && ret <= 4096) { return null; } Result_DescriptionCreationErrorZ ret_hu_conv = Result_DescriptionCreationErrorZ.constr_from_ptr(ret); return ret_hu_conv; } @@ -59,7 +70,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; }