Home | History | Annotate | Download | only in core

Lines Matching defs:key

31             throw new RuntimeException("Key-Value arguments passed into setKeyValues must be "
36 throw new RuntimeException("Key-value argument " + i + " must be a key of type "
39 String key = (String)keyValues[i];
41 put(key, value);
51 public String getString(String key) {
52 Object result = get(key);
56 public int getInt(String key) {
57 Object result = get(key);
61 public float getFloat(String key) {
62 Object result = get(key);