Loading...
Searching...
No Matches
MapFilterCondition.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
3import java.util.ArrayList;
4
25public final class MapFilterCondition {
26
27
28 /*package*/ final String property;
29
30 /*package*/ final ArrayList<String> values;
31
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}