Lines Matching defs:key

56          * @param key The key of the preference that was changed, added, or
59 void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key);
73 * @param key The name of the preference to modify.
76 * this key.
81 Editor putString(String key, String value);
87 * @param key The name of the preference to modify.
90 * this key.
94 Editor putStringSet(String key, Set<String> values);
100 * @param key The name of the preference to modify.
106 Editor putInt(String key, int value);
112 * @param key The name of the preference to modify.
118 Editor putLong(String key, long value);
124 * @param key The name of the preference to modify.
130 Editor putFloat(String key, float value);
136 * @param key The name of the preference to modify.
142 Editor putBoolean(String key, boolean value);
153 * @param key The name of the preference to remove.
158 Editor remove(String key);
238 * @return Returns a map containing a list of pairs key/value representing
248 * @param key The name of the preference to retrieve.
257 String getString(String key, String defValue);
266 * @param key The name of the preference to retrieve.
275 Set<String> getStringSet(String key, Set<String> defValues);
280 * @param key The name of the preference to retrieve.
289 int getInt(String key, int defValue);
294 * @param key The name of the preference to retrieve.
303 long getLong(String key, long defValue);
308 * @param key The name of the preference to retrieve.
317 float getFloat(String key, float defValue);
322 * @param key The name of the preference to retrieve.
331 boolean getBoolean(String key, boolean defValue);
336 * @param key The name of the preference to check.
340 boolean contains(String key);