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
61
public
ZoneEventType
getType
() {
62
return
type;
63
}
64
77
public
int
getLocationId
() {
78
return
locationId;
79
}
80
93
public
int
getSublocationId
() {
94
return
sublocationId;
95
}
96
109
public
int
getId
() {
110
return
id;
111
}
112
125
public
String
getName
() {
126
return
name;
127
}
128
141
public
String
getAlias
() {
142
return
alias;
143
}
144
145
@Override
146
public
String
toString
() {
147
return
"ZoneEvent{"
+
148
"type="
+ type +
149
","
+
"locationId="
+ locationId +
150
","
+
"sublocationId="
+ sublocationId +
151
","
+
"id="
+
id
+
152
","
+
"name="
+ name +
153
","
+
"alias="
+ alias +
154
"}"
;
155
}
156
157
}
java
com
navigine
idl
java
ZoneEvent.java
Generated on Mon Dec 8 2025 13:17:53 for Navigine iOS/Android/Flutter SDK by
Doxygen
1.13.2