Update auto-generated bindings to 0.0.102
[ldk-java] / src / main / java / org / ldk / structs / NodeId.java
diff --git a/src/main/java/org/ldk/structs/NodeId.java b/src/main/java/org/ldk/structs/NodeId.java
new file mode 100644 (file)
index 0000000..a878cb5
--- /dev/null
@@ -0,0 +1,78 @@
+package org.ldk.structs;
+
+import org.ldk.impl.bindings;
+import org.ldk.enums.*;
+import org.ldk.util.*;
+import java.util.Arrays;
+import javax.annotation.Nullable;
+
+
+/**
+ * Represents the compressed public key of a node
+ */
+@SuppressWarnings("unchecked") // We correctly assign various generic arrays
+public class NodeId extends CommonBase {
+       NodeId(Object _dummy, long ptr) { super(ptr); }
+       @Override @SuppressWarnings("deprecation")
+       protected void finalize() throws Throwable {
+               super.finalize();
+               if (ptr != 0) { bindings.NodeId_free(ptr); }
+       }
+
+       /**
+        * Creates a copy of the NodeId
+        */
+       public NodeId clone() {
+               long ret = bindings.NodeId_clone(this.ptr);
+               if (ret >= 0 && ret < 1024) { return null; }
+               NodeId ret_hu_conv = new NodeId(null, ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Create a new NodeId from a public key
+        */
+       public static NodeId from_pubkey(byte[] pubkey) {
+               long ret = bindings.NodeId_from_pubkey(pubkey);
+               if (ret >= 0 && ret < 1024) { return null; }
+               NodeId ret_hu_conv = new NodeId(null, ret);
+               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Get the public key slice from this NodeId
+        */
+       public byte[] as_slice() {
+               byte[] ret = bindings.NodeId_as_slice(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Checks if two NodeIds contain equal inner contents.
+        */
+       public long hash() {
+               long ret = bindings.NodeId_hash(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Serialize the NodeId object into a byte array which can be read by NodeId_read
+        */
+       public byte[] write() {
+               byte[] ret = bindings.NodeId_write(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Read a NodeId from a byte array, created by NodeId_write
+        */
+       public static Result_NodeIdDecodeErrorZ read(byte[] ser) {
+               long ret = bindings.NodeId_read(ser);
+               if (ret >= 0 && ret < 1024) { return null; }
+               Result_NodeIdDecodeErrorZ ret_hu_conv = Result_NodeIdDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
+}