edc0a7f3c0a99a12e23d58a2e0ad5feec713ec06
[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                 ret_hu_conv.ptrs_to.add(this);
21                 return ret_hu_conv;
22         }
23
24         public byte[] get_txid() {
25                 byte[] ret = bindings.OutPoint_get_txid(this.ptr);
26                 return ret;
27         }
28
29         public void set_txid(byte[] val) {
30                 bindings.OutPoint_set_txid(this.ptr, val);
31         }
32
33         public short get_index() {
34                 short ret = bindings.OutPoint_get_index(this.ptr);
35                 return ret;
36         }
37
38         public void set_index(short val) {
39                 bindings.OutPoint_set_index(this.ptr, val);
40         }
41
42         public static OutPoint constructor_new(byte[] txid_arg, short index_arg) {
43                 long ret = bindings.OutPoint_new(txid_arg, index_arg);
44                 OutPoint ret_hu_conv = new OutPoint(null, ret);
45                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
46                 return ret_hu_conv;
47         }
48
49         public byte[] to_channel_id() {
50                 byte[] ret = bindings.OutPoint_to_channel_id(this.ptr);
51                 return ret;
52         }
53
54         public byte[] write() {
55                 byte[] ret = bindings.OutPoint_write(this.ptr);
56                 return ret;
57         }
58
59         public static OutPoint constructor_read(byte[] ser) {
60                 long ret = bindings.OutPoint_read(ser);
61                 OutPoint ret_hu_conv = new OutPoint(null, ret);
62                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
63                 return ret_hu_conv;
64         }
65
66 }