|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.microedition.location.LandmarkStore
public class LandmarkStore
The LandmarkStore class provides methods to store, delete and retrieve landmarks from a persistent landmark store. There is one default landmark store and there may be multiple other named landmark stores. The implementation may support creating and deleting landmark stores by the application. All landmark stores MUST be shared between all Java ME applications and MAY be shared with native applications in the terminal. Named landmark stores have unique names in this API. If the underlying implementation allows multiple landmark stores with the same name, it must present them with unique names in the API e.g. by adding some postfix to those names that have multiple instances in order to differentiate them.
The Landmarks have a name and may be placed in a category or several categories. The category is intended to group landmarks that are of similar type to the end user, e.g. restaurants, museums, etc. The landmark names are strings that identify the landmark to the end user. The category names describe the category to the end user. The language used in the names may be any and depends on the preferences of the end user. The names of the categories are unique within a LandmarkStore. However, the names of the landmarks are not guaranteed to be unique. Landmarks with the same name can appear in multiple categories or even several Landmarks with the same name in the same category.
The Landmark objects returned from the getLandmarks methods in this class shall guarantee that the application can read a consistent set of the landmark data valid at the time of obtaining the object instance, even if the landmark information in the store is modified subsequently by this or some other application.
The Landmark
object instances can be in two states:
LandmarkStore
A Landmark object belongs to a LandmarkStore if it has been obtained from the LandmarkStore using getLandmarks or if it has been added to the LandmarkStore using addLandmark. A Landmark object is initially constructed by an application when it has been constructed using the constructor but has not been added to a LandmarkStore using addLandmark.
The landmark stores created by an application and landmarks added in landmark stores persist even if the application itself is deleted from the terminal.
Accessing the landmark store may cause a SecurityException, if the calling application does not have the required permissions. The permissions to read and write (including add and delete) landmarks are distinct. An application having e.g. a permission to read landmarks wouldn't necessarily have the permission to delete them. The permissions (names etc.) for the MIDP 2.0 security framework are defined elsewhere in this specification.
Method Summary | ||
---|---|---|
void |
addCategory(String categoryName)
Adds a category to this LandmarkStore. |
|
void |
addLandmark(Landmark landmark,
String category)
Adds a landmark to the specified group in the landmark store. |
|
static void |
createLandmarkStore(String storeName)
Creates a new landmark store with a specified name.All LandmarkStores are shared between all Java ME applications and may be shared with native applications. |
|
void |
deleteCategory(String categoryName)
Removes a category from this LandmarkStore. |
|
void |
deleteLandmark(Landmark lm)
Deletes a landmark from this LandmarkStore. |
|
static void |
deleteLandmarkStore(String storeName)
Delete a landmark store with a specified name. |
|
Enumeration |
getCategories()
Returns the category names that are defined in this LandmarkStore. |
|
static LandmarkStore |
getInstance(String storeName)
Gets a LandmarkStore instance for storing, deleting and retrieving landmarks. |
|
Enumeration |
getLandmarks()
Lists all landmarks stored in the database. |
|
Enumeration |
getLandmarks(String category,
double minLatitude,
double maxLatitude,
double minLongitude,
double maxLongitude)
Lists all the landmarks that are within an area defined by bounding minimum and maximum latitude and longitude. |
|
Enumeration |
getLandmarks(String category,
String name)
Gets the Landmarks from the storage where the category and/or name matches the given parameters. |
|
static String[] |
listLandmarkStores()
Lists the names of all the available landmark stores.The default landmark store is obtained from getInstance by passing null as the parameter. |
|
void |
removeLandmarkFromCategory(Landmark lm,
String category)
Removes the named landmark from the specified category. |
|
void |
updateLandmark(Landmark lm)
Updates the information about a landmark. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static LandmarkStore getInstance(String storeName)
storeName
- the name of the landmark store to open. if null, the default landmark store will be returned
SecurityException
- if the application does not have a permission to read landmark storespublic void addLandmark(Landmark landmark, String category) throws IOException
Adds a landmark to the specified group in the landmark store.
If some textual String field inside the landmark object is set to a value that is too long to be stored, the implementation is allowed to automatically truncate fields that are too long.
However, the name field and the category field MUST NOT be truncated. Every implementation shall be able to support name fields that are 32 characters or shorter. Implementations may support longer names but are not required to. If an application tries to add a Landmark with a longer name field than the implementation can support, IllegalArgumentException is thrown.
When the landmark database is empty, every implementation is required to be able to store a landmark where each String field is set to a 30 character long string.
If the Landmark object that is passed as a parameter is an instance that belongs to this LandmarkStore, the same landmark instance will be added to the specified category in addition to the category/categories which it already belongs to. If the landmark already belongs to the specified category, this method returns with no effect. If the landmark has been deleted after obtaining it from getLandmarks, it will be added back when this method is called.
If the Landmark object that is passed as a parameter is an instance initially constructed by the application using the constructor or an instance that belongs to a different LandmarkStore, a new landmark will be created in this LandmarkStore and it will belong initially to only the category specified in the category parameter. After this method call, the Landmark object that is passed as a parameter belongs to this LandmarkStore.
landmark
- the landmark to be addedcategory
- category where the landmark is added. null can be used to indicate that the landmark does not belong to a category
SecurityException
- if the application is not allowed to add landmarks
IllegalArgumentException
- if the landmark has a longer name field than the implementation can support or if the category defined in the landmark is not one of the categories supported by this LandmarkStore
IOException
- if an I/O error happened when accessing the landmark database or if there are no resources available to store this landmark
NullPointerException
- if the landmark parameter is nullpublic Enumeration getLandmarks(String category, String name) throws IOException
Gets the Landmarks from the storage where the category and/or name matches the given parameters.
category
- - the category of the landmark. null implies a wildcard that matches all categoriesname
- the name of the desired landmark. null implies a wildcard that matches all the names within the caterory indicated by the category parameter
IOException
- if an I/O error happened when accessing the landmark databasepublic Enumeration getLandmarks() throws IOException
Lists all landmarks stored in the database.
IOException
- if an I/O error happened when accessing the landmark databasepublic Enumeration getLandmarks(String category, double minLatitude, double maxLatitude, double minLongitude, double maxLongitude) throws IOException
Lists all the landmarks that are within an area defined by bounding minimum and maximum latitude and longitude. The bounds are considered to belong to the area.
If minLongitude <= maxLongitude, this area covers the longitude range [minLongitude, maxLongitude].
If minLongitude > maxLongitude, this area covers the longitude range [-180.0, maxLongitude] and [minLongitude, 180.0).
For latitude, the area covers the latitude range [minLatitude, maxLatitude].
minLongitude
- minimum longitude of the area. Must be within the range [-180.0, 180.0)maxLongitude
- maximum longitude of the area. Must be within the range [-180.0, 180.0)
IOException
- if an I/O error happened when accessing the landmark database
java.lang.IllegalArgumentEx0
- ception if the minLongitude or maxLongitude is out of the range [-180.0, 180.0), or minLatitude or minLongitude is out of the range [-90.0,90.0], or if minLatitude > maxLatitudepublic void deleteLandmark(Landmark lm) throws IOException, LandmarkException
Deletes a landmark from this LandmarkStore. This method removes the specified landmark from all categories and deletes the information from this LandmarkStore.
The Landmark instance passed in as the parameter must be an instance that belongs to this LandmarkStore.
If the Landmark is not found in this LandmarkStore, then the request is silently ignored and the method call returns with no error.
lm
- the landmark to be deleted
SecurityException
- if the application is not allowed to delete the landmark
LandmarkException
- if the landmark instance passed as the parameter does not belong to this LandmarkStore
IOException
- if an I/O error happened when accessing the landmark store
NullPointerException
- if the parameter is nullpublic void addCategory(String categoryName) throws LandmarkException, IOException
categoryName
- name for the category to be added
IllegalArgumentException
- if a category with the specified name already exists
NullPointerException
- if the parameter is null
LandmarkException
- if this LandmarkStore does not support adding new categories
IOException
- if an I/O error occurs or there are no resources to add a new category
SecurityException
- if the application does not have the permission to manage categoriespublic static void createLandmarkStore(String storeName) throws IOException, LandmarkException
storeName
- the name of the landmark store to create
IllegalArgumentException
- if the name is too long or if a landmark store with the specified name already exists
NullPointerException
- if the parameter is null
LandmarkException
- if the implementation does not support creating new landmark stores
IOException
- if the landmark store couldn't be created due to an I/O error
SecurityException
- if the application does not have permissions to create a new landmark storepublic void deleteCategory(String categoryName) throws LandmarkException, IOException
categoryName
- name for the category to be removed
NullPointerException
- if the parameter is null
LandmarkException
- if this LandmarkStore does not support deleting categories
IOException
- if an I/O error occurs
SecurityException
- if the application does not have the permission to manage categoriespublic static void deleteLandmarkStore(String storeName) throws IOException, LandmarkException
storeName
- the name of the landmark store to create
NullPointerException
- if the parameter is null (the default landmark store can't be deleted)
LandmarkException
- if the implementation does not support deleting landmark stores
IOException
- if the landmark store couldn't be deleted due to an I/O error
SecurityException
- if the appliction does not have permissions to delete a landmark storepublic Enumeration getCategories()
public static String[] listLandmarkStores() throws IOException
SecurityException
- if the application does not have the permission to access landmark stores
IOException
- if an I/O error occurred when trying to access the landmark storespublic void removeLandmarkFromCategory(Landmark lm, String category) throws IOException
Removes the named landmark from the specified category.
The Landmark instance passed in as the parameter must be an instance that belongs to this LandmarkStore.
If the Landmark is not found in this LandmarkStore in the specified category or if the parameter is a Landmark instance that does not belong to this LandmarkStore, then the request is silently ignored and the method call returns with no error. The request is also silently ignored if the specified category does not exist in this LandmarkStore.
The landmark is only removed from the specified category but the landmark information is retained in the store. If the landmark no longer belongs to any category, it can still be obtained from the store by passing null as the category to getLandmarks.
lm
- the landmark to be removedcategory
- the category from which it will be removed.
NullPointerException
- - if either parameter is null
IOException
- if an I/O error happened when accessing the landmark store
SecurityException
- if the application is not allowed to the landmarkpublic void updateLandmark(Landmark lm) throws IOException, LandmarkException
lm
- the landmark to be updated
NullPointerException
- if the parameter is null
LandmarkException
- if the landmark instance passed as the parameter does not belong to this LandmarkStore or does not exist in the store any more
IOException
- if an I/O error happened when accessing the landmark store
SecurityException
- if the application is not allowed to update the landmark
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal