Navigine iOS/Android/Flutter SDK
1.0.0
Objective-C/Java/Dart SDK API
Loading...
Searching...
No Matches
ZoneEvent.java
Go to the documentation of this file.
1
package
com.navigine.idl.java;
2
16
public
final
class
ZoneEvent
{
17
18
19
/*package*/
final
ZoneEventType
type;
20
21
/*package*/
final
int
locationId;
22
23
/*package*/
final
int
sublocationId;
24
25
/*package*/
final
int
id;
26
27
/*package*/
final
String name;
28
29
/*package*/
final
String alias;
30
34
public
ZoneEvent
(
35
ZoneEventType
type,
36
int
locationId,
37
int
sublocationId,
38
int
id
,
39
String name,
40
String alias) {
41
this.type = type;
42
this.locationId = locationId;
43
this.sublocationId = sublocationId;
44
this.id = id;
45
this.name = name;
46
this.alias = alias;
47
}
48
62
public
ZoneEventType
getType
() {
63
return
type;
64
}
65
79
public
int
getLocationId
() {
80
return
locationId;
81
}
82
96
public
int
getSublocationId
() {
97
return
sublocationId;
98
}
99
113
public
int
getId
() {
114
return
id;
115
}
116
130
public
String
getName
() {
131
return
name;
132
}
133
147
public
String
getAlias
() {
148
return
alias;
149
}
150
151
@Override
152
public
String
toString
() {
153
return
"ZoneEvent{"
+
154
"type="
+ type +
155
","
+
"locationId="
+ locationId +
156
","
+
"sublocationId="
+ sublocationId +
157
","
+
"id="
+
id
+
158
","
+
"name="
+ name +
159
","
+
"alias="
+ alias +
160
"}"
;
161
}
162
163
}
java
com
navigine
idl
java
ZoneEvent.java
Generated on Thu Apr 16 2026 08:08:54 for Navigine iOS/Android/Flutter SDK by
Doxygen
1.13.2