Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / SignOrCreationError.java
diff --git a/src/main/java/org/ldk/structs/SignOrCreationError.java b/src/main/java/org/ldk/structs/SignOrCreationError.java
new file mode 100644 (file)
index 0000000..918d862
--- /dev/null
@@ -0,0 +1,72 @@
+package org.ldk.structs;
+
+import org.ldk.impl.bindings;
+import org.ldk.enums.*;
+import org.ldk.util.*;
+import java.util.Arrays;
+
+
+/**
+ * When signing using a fallible method either an user-supplied `SignError` or a `CreationError`
+ * may occur.
+ */
+@SuppressWarnings("unchecked") // We correctly assign various generic arrays
+public class SignOrCreationError extends CommonBase {
+       private SignOrCreationError(Object _dummy, long ptr) { super(ptr); }
+       @Override @SuppressWarnings("deprecation")
+       protected void finalize() throws Throwable {
+               super.finalize();
+               if (ptr != 0) { bindings.SignOrCreationError_free(ptr); }
+       }
+       static SignOrCreationError constr_from_ptr(long ptr) {
+               bindings.LDKSignOrCreationError raw_val = bindings.LDKSignOrCreationError_ref_from_ptr(ptr);
+               if (raw_val.getClass() == bindings.LDKSignOrCreationError.SignError.class) {
+                       return new SignError(ptr, (bindings.LDKSignOrCreationError.SignError)raw_val);
+               }
+               if (raw_val.getClass() == bindings.LDKSignOrCreationError.CreationError.class) {
+                       return new CreationError(ptr, (bindings.LDKSignOrCreationError.CreationError)raw_val);
+               }
+               assert false; return null; // Unreachable without extending the (internal) bindings interface
+       }
+
+       public final static class SignError extends SignOrCreationError {
+               private SignError(long ptr, bindings.LDKSignOrCreationError.SignError obj) {
+                       super(null, ptr);
+               }
+       }
+       public final static class CreationError extends SignOrCreationError {
+               public final org.ldk.enums.CreationError creation_error;
+               private CreationError(long ptr, bindings.LDKSignOrCreationError.CreationError obj) {
+                       super(null, ptr);
+                       this.creation_error = obj.creation_error;
+               }
+       }
+       /**
+        * Creates a copy of the SignOrCreationError
+        */
+       public SignOrCreationError clone() {
+               long ret = bindings.SignOrCreationError_clone(this.ptr);
+               SignOrCreationError ret_hu_conv = SignOrCreationError.constr_from_ptr(ret);
+               ret_hu_conv.ptrs_to.add(this);
+               return ret_hu_conv;
+       }
+
+       /**
+        * Checks if two SignOrCreationErrors contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        */
+       public boolean eq(SignOrCreationError b) {
+               boolean ret = bindings.SignOrCreationError_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               this.ptrs_to.add(b);
+               return ret;
+       }
+
+       /**
+        * Get the string representation of a SignOrCreationError object
+        */
+       public String to_str() {
+               String ret = bindings.SignOrCreationError_to_str(this.ptr);
+               return ret;
+       }
+
+}