Update to support None
[ldk-java] / src / main / java / org / ldk / structs / OutPoint.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5
6 public class OutPoint extends CommonBase {
7         OutPoint(Object _dummy, long ptr) { super(ptr); }
8         @Override @SuppressWarnings("deprecation")
9         protected void finalize() throws Throwable {
10                 bindings.OutPoint_free(ptr); super.finalize();
11         }
12
13         public OutPoint(OutPoint orig) {
14                 super(bindings.OutPoint_clone(orig == null ? 0 : orig.ptr & ~1));
15                 this.ptrs_to.add(orig);
16         }
17
18         public byte[] get_txid(OutPoint this_ptr) {
19                 byte[] ret = bindings.OutPoint_get_txid(this_ptr == null ? 0 : this_ptr.ptr & ~1);
20                 this.ptrs_to.add(this_ptr);
21                 return ret;
22         }
23
24         public void set_txid(OutPoint this_ptr, byte[] val) {
25                 bindings.OutPoint_set_txid(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
26                 this.ptrs_to.add(this_ptr);
27         }
28
29         public short get_index(OutPoint this_ptr) {
30                 short ret = bindings.OutPoint_get_index(this_ptr == null ? 0 : this_ptr.ptr & ~1);
31                 this.ptrs_to.add(this_ptr);
32                 return ret;
33         }
34
35         public void set_index(OutPoint this_ptr, short val) {
36                 bindings.OutPoint_set_index(this_ptr == null ? 0 : this_ptr.ptr & ~1, val);
37                 this.ptrs_to.add(this_ptr);
38         }
39
40         public OutPoint(byte[] txid_arg, short index_arg) {
41                 super(bindings.OutPoint_new(txid_arg, index_arg));
42         }
43
44         public byte[] to_channel_id() {
45                 byte[] ret = bindings.OutPoint_to_channel_id(this.ptr);
46                 return ret;
47         }
48
49         // Skipped OutPoint_write
50         public OutPoint(byte[] ser) {
51                 super(bindings.OutPoint_read(ser));
52         }
53
54 }