Does the given JsonObject contain an array field with the given name?
(JsonObject p_151202_0_, String p_151202_1_)
| 33 | * Does the given JsonObject contain an array field with the given name? |
| 34 | */ |
| 35 | public static boolean isJsonArray(JsonObject p_151202_0_, String p_151202_1_) |
| 36 | { |
| 37 | return !hasField(p_151202_0_, p_151202_1_) ? false : p_151202_0_.get(p_151202_1_).isJsonArray(); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Does the given JsonObject contain a field with the given name whose type is primitive (String, Java primitive, or |
no test coverage detected