java.lang.String |
ISecurePreferences.get(java.lang.String key,
java.lang.String def) |
Retrieves a value associated with the key in this node.
|
boolean |
ISecurePreferences.getBoolean(java.lang.String key,
boolean def) |
Retrieves a value associated with the key in this node.
|
byte[] |
ISecurePreferences.getByteArray(java.lang.String key,
byte[] def) |
Retrieves a value associated with the key in this node.
|
double |
ISecurePreferences.getDouble(java.lang.String key,
double def) |
Retrieves a value associated with the key in this node.
|
float |
ISecurePreferences.getFloat(java.lang.String key,
float def) |
Retrieves a value associated with the key in this node.
|
int |
ISecurePreferences.getInt(java.lang.String key,
int def) |
Retrieves a value associated with the key in this node.
|
long |
ISecurePreferences.getLong(java.lang.String key,
long def) |
Retrieves a value associated with the key in this node.
|
boolean |
ISecurePreferences.isEncrypted(java.lang.String key) |
Specifies if value associated with the key is encrypted.
|
void |
ISecurePreferences.put(java.lang.String key,
java.lang.String value,
boolean encrypt) |
Stores a value associated with the key in this node.
|
void |
ISecurePreferences.putBoolean(java.lang.String key,
boolean value,
boolean encrypt) |
Stores a value associated with the key in this node.
|
void |
ISecurePreferences.putByteArray(java.lang.String key,
byte[] value,
boolean encrypt) |
Stores a value associated with the key in this node.
|
void |
ISecurePreferences.putDouble(java.lang.String key,
double value,
boolean encrypt) |
Stores a value associated with the key in this node.
|
void |
ISecurePreferences.putFloat(java.lang.String key,
float value,
boolean encrypt) |
Stores a value associated with the key in this node.
|
void |
ISecurePreferences.putInt(java.lang.String key,
int value,
boolean encrypt) |
Stores a value associated with the key in this node.
|
void |
ISecurePreferences.putLong(java.lang.String key,
long value,
boolean encrypt) |
Stores a value associated with the key in this node.
|