(String rawKey, String rawValue)
| 227 | } |
| 228 | |
| 229 | static Entry forRawKeyValue(String rawKey, String rawValue) { |
| 230 | checkNotNull(rawKey, "rawKey"); |
| 231 | checkNotNull(rawValue, "rawValue"); |
| 232 | return new Entry(rawKey, rawValue, decode(rawKey), decode(rawValue)); |
| 233 | } |
| 234 | |
| 235 | static Entry forRawLoneKey(String rawKey) { |
| 236 | checkNotNull(rawKey, "rawKey"); |