Method Summary |
public static Object |
getInstance()
|
public Object |
getLocalStorageKeys()
If the local storage feature is enabled for the user-agent (browser), this function returns all the keys, the
key-value pair for which is stored in the local storage provided by DOM:storage methods.
|
public Object |
getLocalStorageProperty(String propKey)
If the local storage feature is enabled for the user-agent (browser), this function returns the value for a given
key stored in local storage provided by DOM:storage methods.
|
protected Object |
Init()
Initializes the instance.
|
public Boolean |
isLocalStorageEnabled()
This function returns a boolean indicating whether the local storage feature is enabled for the user-agent (browser).
|
public Object |
removeLocalStorageProperty(String propKey)
If the local storage feature is enabled for the user-agent (browser), this function removes key/value pair stored in
session storage provided by DOM:storage methods.
|
public Object |
setLocalStorageProperty(String propKey, String propValue)
If the local storage feature is enabled for the user-agent (browser), this function stores the key/value pair in
local storage provided by DOM:storage methods.
|