(String key)
| 66 | } |
| 67 | |
| 68 | public String getString(String key) { |
| 69 | return String.valueOf(this.getValueByKey(key)); |
| 70 | } |
| 71 | |
| 72 | public String getString(String key, String defaultValue) { |
| 73 | if (null == this.getValueByKey(key)) { |
no test coverage detected