Lines Matching refs:put

92      * @param key the name of the value to put
93 * @param value the data for the value to put
95 public void put(String key, String value) {
96 mValues.put(key, value);
111 * @param key the name of the value to put
112 * @param value the data for the value to put
114 public void put(String key, Byte value) {
115 mValues.put(key, value);
121 * @param key the name of the value to put
122 * @param value the data for the value to put
124 public void put(String key, Short value) {
125 mValues.put(key, value);
131 * @param key the name of the value to put
132 * @param value the data for the value to put
134 public void put(String key, Integer value) {
135 mValues.put(key, value);
141 * @param key the name of the value to put
142 * @param value the data for the value to put
144 public void put(String key, Long value) {
145 mValues.put(key, value);
151 * @param key the name of the value to put
152 * @param value the data for the value to put
154 public void put(String key, Float value) {
155 mValues.put(key, value);
161 * @param key the name of the value to put
162 * @param value the data for the value to put
164 public void put(String key, Double value) {
165 mValues.put(key, value);
171 * @param key the name of the value to put
172 * @param value the data for the value to put
174 public void put(String key, Boolean value) {
175 mValues.put(key, value);
181 * @param key the name of the value to put
182 * @param value the data for the value to put
184 public void put(String key, byte[] value) {
185 mValues.put(key, value);
194 mValues.put(key, null);
489 mValues.put(key, value);