Loading...
Searching...
No Matches
com.navigine.idl.java.internal.VenueBinding Class Reference
+ Inheritance diagram for com.navigine.idl.java.internal.VenueBinding:

Public Member Functions

native boolean isValid ()
 
Point getPoint ()
 venue's X and Y coordinates in meters as Point (within the sublocation).
 
int getLocationId ()
 venue's location identifier.
 
int getSublocationId ()
 venue's sublocation identifier.
 
int getId ()
 venue's identifier.
 
String getName ()
 venue's name.
 
String getPhone ()
 venue's phone.
 
String getDescript ()
 venue's description.
 
String getAlias ()
 venue's alias.
 
int getCategoryId ()
 venue's category unique identifier Category
 
String getImageUrl ()
 venue's image url if specified.
 

Detailed Description

Definition at line 11 of file VenueBinding.java.

Member Function Documentation

◆ getAlias()

String com.navigine.idl.java.internal.VenueBinding.getAlias ( )
inline

venue's alias.

Returns

Java code snippet:

// Get venue alias
String alias = venue.getAlias();
System.out.println("Venue alias: " + alias);

Kotlin code snippet:

// Get venue alias
val alias = venue.alias
println("Venue alias: $alias")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 75 of file VenueBinding.java.

◆ getCategoryId()

int com.navigine.idl.java.internal.VenueBinding.getCategoryId ( )
inline

venue's category unique identifier Category

Returns

Java code snippet:

// Get category ID
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")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 82 of file VenueBinding.java.

◆ getDescript()

String com.navigine.idl.java.internal.VenueBinding.getDescript ( )
inline

venue's description.

Returns

Java code snippet:

// Get venue description
String venueDescription = venue.getDescript();
System.out.println("Venue description: " + venueDescription);

Kotlin code snippet:

// Get venue description
val venueDescription = venue.descript
println("Venue description: $venueDescription")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 68 of file VenueBinding.java.

◆ getId()

int com.navigine.idl.java.internal.VenueBinding.getId ( )
inline

venue's identifier.

Returns

Java code snippet:

// Get venue ID
int venueId = venue.getId();
System.out.println("Venue ID: " + venueId);

Kotlin code snippet:

// Get venue ID
val venueId = venue.id
println("Venue ID: $venueId")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 47 of file VenueBinding.java.

◆ getImageUrl()

String com.navigine.idl.java.internal.VenueBinding.getImageUrl ( )
inline

venue's image url if specified.

Returns

Java code snippet:

// Get venue image URL
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") }

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 89 of file VenueBinding.java.

◆ getLocationId()

int com.navigine.idl.java.internal.VenueBinding.getLocationId ( )
inline

venue's location identifier.

Returns

Java code snippet:

// Get venue location ID
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")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 33 of file VenueBinding.java.

◆ getName()

String com.navigine.idl.java.internal.VenueBinding.getName ( )
inline

venue's name.

Returns

Java code snippet:

// Get venue name
String venueName = venue.getName();
System.out.println("Venue name: " + venueName);

Kotlin code snippet:

// Get venue name
val venueName = venue.name
println("Venue name: $venueName")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 54 of file VenueBinding.java.

◆ getPhone()

String com.navigine.idl.java.internal.VenueBinding.getPhone ( )
inline

venue's phone.

Returns

Java code snippet:

// Get venue phone
String phone = venue.getPhone();
System.out.println("Venue phone: " + phone);

Kotlin code snippet:

// Get venue phone
val phone = venue.phone
println("Venue phone: $phone")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 61 of file VenueBinding.java.

◆ getPoint()

Point com.navigine.idl.java.internal.VenueBinding.getPoint ( )
inline

venue's X and Y coordinates in meters as Point (within the sublocation).

Returns

Java code snippet:

// Get venue point
Point point = venue.getPoint();
if (point != null) {
}

Kotlin code snippet:

// Get venue point
val point = venue.point
point?.let { demonstratePointUsage(it) }

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 26 of file VenueBinding.java.

◆ getSublocationId()

int com.navigine.idl.java.internal.VenueBinding.getSublocationId ( )
inline

venue's sublocation identifier.

Returns

Java code snippet:

// Get venue sublocation ID
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")

Reimplemented from com.navigine.idl.java.Venue.

Definition at line 40 of file VenueBinding.java.

◆ isValid()

native boolean com.navigine.idl.java.internal.VenueBinding.isValid ( )

Tells if this Venue is valid or not. Any other method (except for this one) called on an invalid Venue will throw java.lang.RuntimeException.

Reimplemented from com.navigine.idl.java.Venue.


The documentation for this class was generated from the following file: