Navigine iOS/Android/Flutter SDK
1.0.0
Objective-C/Java/Dart SDK API
Loading...
Searching...
No Matches
MapFilterCondition.java
Go to the documentation of this file.
1
package
com.navigine.idl.java;
2
3
import
java.util.ArrayList;
4
25
public
final
class
MapFilterCondition
{
26
27
28
/*package*/
final
String property;
29
30
/*package*/
final
ArrayList<String> values;
31
35
public
MapFilterCondition
(
36
String property,
37
ArrayList<String> values) {
38
this.property = property;
39
this.values = values;
40
}
41
45
public
String
getProperty
() {
46
return
property;
47
}
48
52
public
ArrayList<String>
getValues
() {
53
return
values;
54
}
55
56
@Override
57
public
String
toString
() {
58
return
"MapFilterCondition{"
+
59
"property="
+
property
+
60
","
+
"values="
+ values +
61
"}"
;
62
}
63
64
}
java
com
navigine
idl
java
MapFilterCondition.java
Generated on Thu Apr 16 2026 08:08:54 for Navigine iOS/Android/Flutter SDK by
Doxygen
1.13.2