MCPcopy Index your code
hub / github.com/Tencent/APIJSON / get

Method get

APIJSONORM/src/main/java/apijson/JSON.java:255–258  ·  view source on GitHub ↗

Get a value from a Map and convert to the specified type @param map Source map @param key The key @param Target type @return The converted value

(Map<String, Object> map, String key)

Source from the content-addressed store, hash-verified

253 * @return The converted value
254 */
255 @SuppressWarnings("unchecked")
256 public static <T> T get(Map<String, Object> map, String key) {
257 return map == null || key == null ? null : (T) map.get(key);
258 }
259
260 /**
261 * Get a value from a Map and convert to the specified type

Callers 15

getJSONObjectMethod · 0.95
getJSONArrayMethod · 0.95
wrapRequestMethod · 0.95
getStructureMethod · 0.95
onArrayParseMethod · 0.95
onJoinParseMethod · 0.95
batchVerifyMethod · 0.95
setRequestAttributeMethod · 0.95
executeMethod · 0.95
parseMethod · 0.95
onParseMethod · 0.95
onTableArrayParseMethod · 0.95

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected