Update auto-updated Java files
[ldk-java] / ts / structs / NodeFeatures.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class NodeFeatures extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.NodeFeatures_free(this.ptr);
19                     }
20                 }
21         public boolean eq(NodeFeatures b) {
22                 boolean ret = bindings.NodeFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
23                 this.ptrs_to.add(b);
24                 return ret;
25         }
26
27         public number clone_ptr() {
28                 number ret = bindings.NodeFeatures_clone_ptr(this.ptr);
29                 return ret;
30         }
31
32         public NodeFeatures clone() {
33                 number ret = bindings.NodeFeatures_clone(this.ptr);
34                 const ret_hu_conv: NodeFeatures = new NodeFeatures(null, ret);
35                 ret_hu_conv.ptrs_to.add(this);
36                 return ret_hu_conv;
37         }
38
39         public static NodeFeatures constructor_empty() {
40                 number ret = bindings.NodeFeatures_empty();
41                 const ret_hu_conv: NodeFeatures = new NodeFeatures(null, ret);
42                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
43                 return ret_hu_conv;
44         }
45
46         public static NodeFeatures constructor_known() {
47                 number ret = bindings.NodeFeatures_known();
48                 const ret_hu_conv: NodeFeatures = new NodeFeatures(null, ret);
49                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
50                 return ret_hu_conv;
51         }
52
53         public boolean requires_unknown_bits() {
54                 boolean ret = bindings.NodeFeatures_requires_unknown_bits(this.ptr);
55                 return ret;
56         }
57
58         public Uint8Array write() {
59                 Uint8Array ret = bindings.NodeFeatures_write(this.ptr);
60                 return ret;
61         }
62
63         public static Result_NodeFeaturesDecodeErrorZ constructor_read(Uint8Array ser) {
64                 number ret = bindings.NodeFeatures_read(ser);
65                 Result_NodeFeaturesDecodeErrorZ ret_hu_conv = Result_NodeFeaturesDecodeErrorZ.constr_from_ptr(ret);
66                 return ret_hu_conv;
67         }
68
69 }