Class is used for storing venue.
More...
Class is used for storing venue.
Referenced from Sublocation.
Definition at line 17 of file Venue.java.
◆ getAlias()
| abstract String com.navigine.idl.java.Venue.getAlias |
( |
| ) |
|
|
abstract |
venue's alias.
- Returns
Java code snippet:
String alias = venue.getAlias();
System.out.println("Venue alias: " + alias);
Kotlin code snippet:
// Get venue alias
val alias = venue.alias
println("Venue alias: $alias")
◆ getCategoryId()
| abstract int com.navigine.idl.java.Venue.getCategoryId |
( |
| ) |
|
|
abstract |
venue's category unique identifier Category
- Returns
Java code snippet:
int categoryId = venue.getCategoryId();
System.out.println("Venue category ID: " + categoryId);
Kotlin code snippet:
// Get category ID
val categoryId = venue.categoryId
println("Venue category ID: $categoryId")
◆ getDescript()
| abstract String com.navigine.idl.java.Venue.getDescript |
( |
| ) |
|
|
abstract |
venue's description.
- Returns
Java code snippet:
String venueDescription = venue.getDescript();
System.out.println("Venue description: " + venueDescription);
Kotlin code snippet:
// Get venue description
val venueDescription = venue.descript
println("Venue description: $venueDescription")
◆ getId()
| abstract int com.navigine.idl.java.Venue.getId |
( |
| ) |
|
|
abstract |
venue's identifier.
- Returns
Java code snippet:
int venueId = venue.getId();
System.out.println("Venue ID: " + venueId);
Kotlin code snippet:
// Get venue ID
val venueId = venue.id
println("Venue ID: $venueId")
◆ getImageUrl()
| abstract String com.navigine.idl.java.Venue.getImageUrl |
( |
| ) |
|
|
abstract |
venue's image url if specified.
- Returns
Java code snippet:
String imageUrl = venue.getImageUrl();
if (imageUrl != null) {
System.out.println("Venue image URL: " + imageUrl);
}
Kotlin code snippet:
// Get venue image URL
val imageUrl = venue.imageUrl
imageUrl?.let { println("Venue image URL: $it") }
◆ getLocationId()
| abstract int com.navigine.idl.java.Venue.getLocationId |
( |
| ) |
|
|
abstract |
venue's location identifier.
- Returns
Java code snippet:
int locationId = venue.getLocationId();
System.out.println("Venue location ID: " + locationId);
Kotlin code snippet:
// Get venue location ID
val locationId = venue.locationId
println("Venue location ID: $locationId")
◆ getName()
| abstract String com.navigine.idl.java.Venue.getName |
( |
| ) |
|
|
abstract |
venue's name.
- Returns
Java code snippet:
String venueName = venue.getName();
System.out.println("Venue name: " + venueName);
Kotlin code snippet:
// Get venue name
val venueName = venue.name
println("Venue name: $venueName")
◆ getPhone()
| abstract String com.navigine.idl.java.Venue.getPhone |
( |
| ) |
|
|
abstract |
venue's phone.
- Returns
Java code snippet:
String phone = venue.getPhone();
System.out.println("Venue phone: " + phone);
Kotlin code snippet:
// Get venue phone
val phone = venue.phone
println("Venue phone: $phone")
◆ getPoint()
| abstract Point com.navigine.idl.java.Venue.getPoint |
( |
| ) |
|
|
abstract |
venue's X and Y coordinates in meters as Point (within the sublocation).
- Returns
Java code snippet:
Point point = venue.getPoint();
if (point != null) {
}
Kotlin code snippet:
// Get venue point
val point = venue.point
point?.let { demonstratePointUsage(it) }
◆ getSublocationId()
| abstract int com.navigine.idl.java.Venue.getSublocationId |
( |
| ) |
|
|
abstract |
venue's sublocation identifier.
- Returns
Java code snippet:
int sublocationId = venue.getSublocationId();
System.out.println("Venue sublocation ID: " + sublocationId);
Kotlin code snippet:
// Get venue sublocation ID
val sublocationId = venue.sublocationId
println("Venue sublocation ID: $sublocationId")
The documentation for this class was generated from the following file: