X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPayeePubKey.java;h=5bf36b0a510cd16cdc08b6422390ede4de8de462;hb=c6bac88847b7c09560af81f00ba8dd3c2ebe3a19;hp=efe6a6a7eb7f5243f8f3951db34e59b995a2f1c0;hpb=db1a11032b4164540a2d3403696be12bbca70e94;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PayeePubKey.java b/src/main/java/org/ldk/structs/PayeePubKey.java index efe6a6a7..5bf36b0a 100644 --- a/src/main/java/org/ldk/structs/PayeePubKey.java +++ b/src/main/java/org/ldk/structs/PayeePubKey.java @@ -19,15 +19,24 @@ public class PayeePubKey extends CommonBase { if (ptr != 0) { bindings.PayeePubKey_free(ptr); } } + public byte[] get_a() { + byte[] ret = bindings.PayeePubKey_get_a(this.ptr); + return ret; + } + + public void set_a(byte[] val) { + bindings.PayeePubKey_set_a(this.ptr, val); + } + /** - * Checks if two PayeePubKeys 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. + * Constructs a new PayeePubKey given each field */ - public boolean eq(PayeePubKey b) { - boolean ret = bindings.PayeePubKey_eq(this.ptr, b == null ? 0 : b.ptr & ~1); - this.ptrs_to.add(b); - return ret; + public static PayeePubKey of(byte[] a_arg) { + long ret = bindings.PayeePubKey_new(a_arg); + if (ret >= 0 && ret <= 4096) { return null; } + PayeePubKey ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new PayeePubKey(null, ret); } + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; } /** @@ -35,10 +44,29 @@ public class PayeePubKey extends CommonBase { */ public PayeePubKey clone() { long ret = bindings.PayeePubKey_clone(this.ptr); - if (ret < 1024) { return null; } - PayeePubKey ret_hu_conv = new PayeePubKey(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + PayeePubKey ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new PayeePubKey(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } + /** + * Checks if two PayeePubKeys contain equal inner contents. + */ + public long hash() { + long ret = bindings.PayeePubKey_hash(this.ptr); + return ret; + } + + /** + * Checks if two PayeePubKeys 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(PayeePubKey b) { + boolean ret = bindings.PayeePubKey_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + this.ptrs_to.add(b); + return ret; + } + }