Class is used for storing location parameters: identifier, version, name, a list of sublocations, etc. More...
Inheritance diagram for com.navigine.idl.java.Location:Public Member Functions | |
| abstract ElevationGraph | getElevationGraph (String tag) |
| Method returns location elevation graph ElevationGraph for specified tag. | |
| abstract ArrayList< String > | getGraphTags () |
| Method returns list of available graph tags. | |
| abstract Sublocation | getSublocationById (int id) |
| Method is used for obtaining a sublocation with the specified identifier from the current location. | |
| abstract Category | getCategoryById (int id) |
| Method is used for obtaining a category with the specified identifier from the current location. | |
| abstract int | getId () |
| location's identifier. | |
| abstract int | getVersion () |
| location's version. | |
| abstract String | getName () |
| location name. | |
| abstract String | getDescript () |
| location's description. | |
| abstract ArrayList< Category > | getCategories () |
| List of venue categories defined for the location Category. | |
| abstract ArrayList< Sublocation > | getSublocations () |
| List of sublocations Sublocation. | |
| abstract boolean | getModified () |
| Flag indicates if location has been modified by user or not. | |
| abstract boolean | isValid () |
Class is used for storing location parameters: identifier, version, name, a list of sublocations, etc.
Location instance can be obtained from LocationManager using LocationListener callback, when the location is loaded.
Referenced from LocationManager LocationListener.
Definition at line 19 of file Location.java.
|
abstract |
List of venue categories defined for the location Category.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
Method is used for obtaining a category with the specified identifier from the current location.
| id | category identifier. |
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
location's description.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
Method returns location elevation graph ElevationGraph for specified tag.
| tag | Graph tag in CMS |
null. Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
Method returns list of available graph tags.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
location's identifier.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
Flag indicates if location has been modified by user or not.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
location name.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
Method is used for obtaining a sublocation with the specified identifier from the current location.
| id | sublocation identifier. |
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
List of sublocations Sublocation.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
location's version.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.LocationBinding.
|
abstract |
Tells if this Location is valid or not. Any other method (except for this one) called on an invalid Location will throw java.lang.RuntimeException.
Reimplemented in com.navigine.idl.java.internal.LocationBinding.