public class Venue
extends java.lang.Object
A Venue is a specific place (like a mall) with one or more maps (typically representing different floors) and locations (stores, washrooms, elevators, etc).
Each Location is linked to:
A Venue can be in one of two states:
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAddress()
The street address of the venue
|
Category[] |
getCategories()
A list of all Category's a Location might be a part of in the Venue (Washroom,
Restaurant, Jewelry Store, etc).
|
java.lang.String |
getCity()
The city of the venue
|
java.lang.String |
getCountryCode()
The country code of the venue
|
Location[] |
getLocations()
A list of all Location's (stores, washrooms, landmarks, etc) in the Venue.
|
Map[] |
getMaps()
A list of all Maps belonging to the Venue.
|
java.lang.String |
getName()
The name of the venue
|
Polygon[] |
getPolygons()
A list of all Polygons in the Venue.
|
java.lang.String |
getPostal()
The postal code of the venue
|
java.lang.String |
getSlug()
The slug of the venue
|
java.lang.String |
getState()
The state/province of the venue
|
java.util.ArrayList<java.lang.String> |
getSupportedLanguages()
The languages supported by this venue
|
Vortex[] |
getVortices()
A list of all Vortex in the Venue.
|
public java.lang.String getName()
public java.lang.String getAddress()
public java.lang.String getCity()
public java.lang.String getState()
public java.lang.String getCountryCode()
public java.lang.String getPostal()
public java.lang.String getSlug()
public java.util.ArrayList<java.lang.String> getSupportedLanguages()
public Location[] getLocations()
Location
public Category[] getCategories()
Category
public Map[] getMaps()
Map
objects is not in any defined order, you probably want to sort by the floor property.
Map[] maps = currentVenue.getMaps();
Arrays.sort(maps, new Comparator
Map
public Vortex[] getVortices()
Vortex