DictValue.java
4.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
//
// This file is auto-generated. Please don't modify it!
//
package org.opencv.dnn;
import java.lang.String;
// C++: class DictValue
//javadoc: DictValue
public class DictValue {
protected final long nativeObj;
protected DictValue(long addr) { nativeObj = addr; }
public long getNativeObjAddr() { return nativeObj; }
//
// C++: DictValue(String s)
//
//javadoc: DictValue::DictValue(s)
public DictValue(String s)
{
nativeObj = DictValue_0(s);
return;
}
//
// C++: DictValue(double p)
//
//javadoc: DictValue::DictValue(p)
public DictValue(double p)
{
nativeObj = DictValue_1(p);
return;
}
//
// C++: DictValue(int i)
//
//javadoc: DictValue::DictValue(i)
public DictValue(int i)
{
nativeObj = DictValue_2(i);
return;
}
//
// C++: String getStringValue(int idx = -1)
//
//javadoc: DictValue::getStringValue(idx)
public String getStringValue(int idx)
{
String retVal = getStringValue_0(nativeObj, idx);
return retVal;
}
//javadoc: DictValue::getStringValue()
public String getStringValue()
{
String retVal = getStringValue_1(nativeObj);
return retVal;
}
//
// C++: bool isInt()
//
//javadoc: DictValue::isInt()
public boolean isInt()
{
boolean retVal = isInt_0(nativeObj);
return retVal;
}
//
// C++: bool isReal()
//
//javadoc: DictValue::isReal()
public boolean isReal()
{
boolean retVal = isReal_0(nativeObj);
return retVal;
}
//
// C++: bool isString()
//
//javadoc: DictValue::isString()
public boolean isString()
{
boolean retVal = isString_0(nativeObj);
return retVal;
}
//
// C++: double getRealValue(int idx = -1)
//
//javadoc: DictValue::getRealValue(idx)
public double getRealValue(int idx)
{
double retVal = getRealValue_0(nativeObj, idx);
return retVal;
}
//javadoc: DictValue::getRealValue()
public double getRealValue()
{
double retVal = getRealValue_1(nativeObj);
return retVal;
}
//
// C++: int getIntValue(int idx = -1)
//
//javadoc: DictValue::getIntValue(idx)
public int getIntValue(int idx)
{
int retVal = getIntValue_0(nativeObj, idx);
return retVal;
}
//javadoc: DictValue::getIntValue()
public int getIntValue()
{
int retVal = getIntValue_1(nativeObj);
return retVal;
}
@Override
protected void finalize() throws Throwable {
delete(nativeObj);
}
// C++: DictValue(String s)
private static native long DictValue_0(String s);
// C++: DictValue(double p)
private static native long DictValue_1(double p);
// C++: DictValue(int i)
private static native long DictValue_2(int i);
// C++: String getStringValue(int idx = -1)
private static native String getStringValue_0(long nativeObj, int idx);
private static native String getStringValue_1(long nativeObj);
// C++: bool isInt()
private static native boolean isInt_0(long nativeObj);
// C++: bool isReal()
private static native boolean isReal_0(long nativeObj);
// C++: bool isString()
private static native boolean isString_0(long nativeObj);
// C++: double getRealValue(int idx = -1)
private static native double getRealValue_0(long nativeObj, int idx);
private static native double getRealValue_1(long nativeObj);
// C++: int getIntValue(int idx = -1)
private static native int getIntValue_0(long nativeObj, int idx);
private static native int getIntValue_1(long nativeObj);
// native support for java finalize()
private static native void delete(long nativeObj);
}