Home | History | Annotate | Download | only in wifi

Lines Matching refs:key

27      * Get the current value of |key|.
28 * @return value of |key|, if key exists; |defaultValue| or empty string otherwise
31 String get(String key, String defaultValue);
34 * Set the value for |key|.
35 * @throws IllegalArgumentException if the key exceeds 32 characters
38 void set(String key, String val);
41 * Get the current value of |key|.
42 * @return value of |key|, if key exists; |defaultValue| otherwise
44 boolean getBoolean(String key, boolean defaultValue);
47 * Get the current value of |key|.
48 * @return value of |key|, if key exists; |defaultValue| otherwise
50 String getString(String key, String defaultValue);