Updated bindings
[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 import org.ldk.util.*;
6 import java.util.Arrays;
7
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class OutPoint extends CommonBase {
10         OutPoint(Object _dummy, long ptr) { super(ptr); }
11         @Override @SuppressWarnings("deprecation")
12         protected void finalize() throws Throwable {
13                 super.finalize();
14                 if (ptr != 0) { bindings.OutPoint_free(ptr); }
15         }
16
17         public OutPoint clone() {
18                 long ret = bindings.OutPoint_clone(this.ptr);
19                 OutPoint ret_hu_conv = new OutPoint(null, ret);
20                 return ret_hu_conv;
21         }
22
23         public byte[] get_txid() {
24                 byte[] ret = bindings.OutPoint_get_txid(this.ptr);
25                 return ret;
26         }
27
28         public void set_txid(byte[] val) {
29                 bindings.OutPoint_set_txid(this.ptr, val);
30         }
31
32         public short get_index() {
33                 short ret = bindings.OutPoint_get_index(this.ptr);
34                 return ret;
35         }
36
37         public void set_index(short val) {
38                 bindings.OutPoint_set_index(this.ptr, val);
39         }
40
41         public static OutPoint constructor_new(byte[] txid_arg, short index_arg) {
42                 long ret = bindings.OutPoint_new(txid_arg, index_arg);
43                 OutPoint ret_hu_conv = new OutPoint(null, ret);
44                 return ret_hu_conv;
45         }
46
47         public byte[] to_channel_id() {
48                 byte[] ret = bindings.OutPoint_to_channel_id(this.ptr);
49                 return ret;
50         }
51
52         public byte[] write() {
53                 byte[] ret = bindings.OutPoint_write(this.ptr);
54                 return ret;
55         }
56
57         public static OutPoint constructor_read(byte[] ser) {
58                 long ret = bindings.OutPoint_read(ser);
59                 OutPoint ret_hu_conv = new OutPoint(null, ret);
60                 return ret_hu_conv;
61         }
62
63 }