d0c7edba75ad06e959af96172d93291a5b5140c8
[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 byte[] get_txid() {
18                 byte[] ret = bindings.OutPoint_get_txid(this.ptr);
19                 return ret;
20         }
21
22         public void set_txid(byte[] val) {
23                 bindings.OutPoint_set_txid(this.ptr, val);
24         }
25
26         public short get_index() {
27                 short ret = bindings.OutPoint_get_index(this.ptr);
28                 return ret;
29         }
30
31         public void set_index(short val) {
32                 bindings.OutPoint_set_index(this.ptr, val);
33         }
34
35         public static OutPoint constructor_new(byte[] txid_arg, short index_arg) {
36                 long ret = bindings.OutPoint_new(txid_arg, index_arg);
37                 OutPoint ret_hu_conv = new OutPoint(null, ret);
38                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
39                 return ret_hu_conv;
40         }
41
42         public OutPoint clone() {
43                 long ret = bindings.OutPoint_clone(this.ptr);
44                 OutPoint ret_hu_conv = new OutPoint(null, ret);
45                 ret_hu_conv.ptrs_to.add(this);
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 Result_OutPointDecodeErrorZ constructor_read(byte[] ser) {
60                 long ret = bindings.OutPoint_read(ser);
61                 Result_OutPointDecodeErrorZ ret_hu_conv = Result_OutPointDecodeErrorZ.constr_from_ptr(ret);
62                 return ret_hu_conv;
63         }
64
65 }