b2132e8b6b12d11e182dc52d431ea813f5129ab7
[ldk-java] / c_sharp / src / org / ldk / structs / Option_FilterZ.cs
1 using org.ldk.impl;
2 using org.ldk.enums;
3 using org.ldk.util;
4 using System;
5
6 namespace org { namespace ldk { namespace structs {
7
8 /**
9  * An enum which can either contain a crate::lightning::chain::Filter or not
10  */
11 public class Option_FilterZ : CommonBase {
12         protected Option_FilterZ(object _dummy, long ptr) : base(ptr) { }
13         ~Option_FilterZ() {
14                 if (ptr != 0) { bindings.COption_FilterZ_free(ptr); }
15         }
16
17         internal static Option_FilterZ constr_from_ptr(long ptr) {
18                 long raw_ty = bindings.LDKCOption_FilterZ_ty_from_ptr(ptr);
19                 switch (raw_ty) {
20                         case 0: return new Option_FilterZ_Some(ptr);
21                         case 1: return new Option_FilterZ_None(ptr);
22                         default:
23                                 throw new ArgumentException("Impossible enum variant");
24                 }
25         }
26
27         /** A Option_FilterZ of type Some */
28         public class Option_FilterZ_Some : Option_FilterZ {
29                 public Filter some;
30                 internal Option_FilterZ_Some(long ptr) : base(null, ptr) {
31                         long some = bindings.LDKCOption_FilterZ_Some_get_some(ptr);
32                         Filter ret_hu_conv = new Filter(null, some);
33                         if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
34                         this.some = ret_hu_conv;
35                 }
36         }
37         /** A Option_FilterZ of type None */
38         public class Option_FilterZ_None : Option_FilterZ {
39                 internal Option_FilterZ_None(long ptr) : base(null, ptr) {
40                 }
41         }
42         /**
43          * Constructs a new COption_FilterZ containing a crate::lightning::chain::Filter
44          */
45         public static Option_FilterZ some(org.ldk.structs.Filter o) {
46                 long ret = bindings.COption_FilterZ_some(o == null ? 0 : o.ptr);
47                 GC.KeepAlive(o);
48                 if (ret >= 0 && ret <= 4096) { return null; }
49                 org.ldk.structs.Option_FilterZ ret_hu_conv = org.ldk.structs.Option_FilterZ.constr_from_ptr(ret);
50                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
51                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(o); };
52                 return ret_hu_conv;
53         }
54
55         /**
56          * Constructs a new COption_FilterZ containing nothing
57          */
58         public static Option_FilterZ none() {
59                 long ret = bindings.COption_FilterZ_none();
60                 if (ret >= 0 && ret <= 4096) { return null; }
61                 org.ldk.structs.Option_FilterZ ret_hu_conv = org.ldk.structs.Option_FilterZ.constr_from_ptr(ret);
62                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
63                 return ret_hu_conv;
64         }
65
66 }
67 } } }