X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FOption_PaymentHashZ.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FOption_PaymentHashZ.java;h=0000000000000000000000000000000000000000;hb=07d5d868dfe064aadb28a7f7ca6002c16be9723d;hp=d71eb94103280f11bfa73bf7ea82eb7fd3c0ec7f;hpb=32973ea2749f8efd05b543dd774763513013b38b;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Option_PaymentHashZ.java b/src/main/java/org/ldk/structs/Option_PaymentHashZ.java deleted file mode 100644 index d71eb941..00000000 --- a/src/main/java/org/ldk/structs/Option_PaymentHashZ.java +++ /dev/null @@ -1,93 +0,0 @@ -package org.ldk.structs; - -import org.ldk.impl.bindings; -import org.ldk.enums.*; -import org.ldk.util.*; -import java.util.Arrays; -import java.lang.ref.Reference; -import javax.annotation.Nullable; - - -/** - * An enum which can either contain a crate::c_types::ThirtyTwoBytes or not - */ -@SuppressWarnings("unchecked") // We correctly assign various generic arrays -public class Option_PaymentHashZ extends CommonBase { - private Option_PaymentHashZ(Object _dummy, long ptr) { super(ptr); } - @Override @SuppressWarnings("deprecation") - protected void finalize() throws Throwable { - super.finalize(); - if (ptr != 0) { bindings.COption_PaymentHashZ_free(ptr); } - } - static Option_PaymentHashZ constr_from_ptr(long ptr) { - bindings.LDKCOption_PaymentHashZ raw_val = bindings.LDKCOption_PaymentHashZ_ref_from_ptr(ptr); - if (raw_val.getClass() == bindings.LDKCOption_PaymentHashZ.Some.class) { - return new Some(ptr, (bindings.LDKCOption_PaymentHashZ.Some)raw_val); - } - if (raw_val.getClass() == bindings.LDKCOption_PaymentHashZ.None.class) { - return new None(ptr, (bindings.LDKCOption_PaymentHashZ.None)raw_val); - } - assert false; return null; // Unreachable without extending the (internal) bindings interface - } - - /** - * When we're in this state, this COption_PaymentHashZ contains a crate::c_types::ThirtyTwoBytes - */ - public final static class Some extends Option_PaymentHashZ { - public final byte[] some; - private Some(long ptr, bindings.LDKCOption_PaymentHashZ.Some obj) { - super(null, ptr); - this.some = obj.some; - } - } - /** - * When we're in this state, this COption_PaymentHashZ contains nothing - */ - public final static class None extends Option_PaymentHashZ { - private None(long ptr, bindings.LDKCOption_PaymentHashZ.None obj) { - super(null, ptr); - } - } - /** - * Constructs a new COption_PaymentHashZ containing a crate::c_types::ThirtyTwoBytes - */ - public static Option_PaymentHashZ some(byte[] o) { - long ret = bindings.COption_PaymentHashZ_some(InternalUtils.check_arr_len(o, 32)); - Reference.reachabilityFence(o); - if (ret >= 0 && ret <= 4096) { return null; } - org.ldk.structs.Option_PaymentHashZ ret_hu_conv = org.ldk.structs.Option_PaymentHashZ.constr_from_ptr(ret); - if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; - return ret_hu_conv; - } - - /** - * Constructs a new COption_PaymentHashZ containing nothing - */ - public static Option_PaymentHashZ none() { - long ret = bindings.COption_PaymentHashZ_none(); - if (ret >= 0 && ret <= 4096) { return null; } - org.ldk.structs.Option_PaymentHashZ ret_hu_conv = org.ldk.structs.Option_PaymentHashZ.constr_from_ptr(ret); - if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; - return ret_hu_conv; - } - - long clone_ptr() { - long ret = bindings.COption_PaymentHashZ_clone_ptr(this.ptr); - Reference.reachabilityFence(this); - return ret; - } - - /** - * Creates a new COption_PaymentHashZ which has the same data as `orig` - * but with all dynamically-allocated buffers duplicated in new buffers. - */ - public Option_PaymentHashZ clone() { - long ret = bindings.COption_PaymentHashZ_clone(this.ptr); - Reference.reachabilityFence(this); - if (ret >= 0 && ret <= 4096) { return null; } - org.ldk.structs.Option_PaymentHashZ ret_hu_conv = org.ldk.structs.Option_PaymentHashZ.constr_from_ptr(ret); - if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; - return ret_hu_conv; - } - -}