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
52
public
ZoneEventType
getType
() {
53
return
type;
54
}
55
59
public
int
getLocationId
() {
60
return
locationId;
61
}
62
66
public
int
getSublocationId
() {
67
return
sublocationId;
68
}
69
73
public
int
getId
() {
74
return
id;
75
}
76
80
public
String
getName
() {
81
return
name;
82
}
83
87
public
String
getAlias
() {
88
return
alias;
89
}
90
91
@Override
92
public
String
toString
() {
93
return
"ZoneEvent{"
+
94
"type="
+ type +
95
","
+
"locationId="
+ locationId +
96
","
+
"sublocationId="
+ sublocationId +
97
","
+
"id="
+
id
+
98
","
+
"name="
+ name +
99
","
+
"alias="
+ alias +
100
"}"
;
101
}
102
103
}
java
com
navigine
idl
java
ZoneEvent.java
Generated on Thu May 29 2025 21:18:52 for Navigine iOS/Android/Flutter SDK by
Doxygen
1.13.2