parseObject(JsonParser parser) throws IOException {
/**
* Parse the json and return as a Map taking a JsonParser and a starting token.
- *
- * Used when the first token is checked to see if the value is null prior to calling this.
- *
+ *
+ * Used when the first token is checked to see if the value is null prior to calling this.
*/
@Override
public Map parseObject(JsonParser parser, JsonToken token) throws IOException {
return EJsonReader.parseObject(parser, token);
}
- /**
- * Parse the json and return as a modify aware List.
- */
+ /** Parse the json and return as a modify aware List. */
@Override
public List parseList(String json, boolean modifyAware) throws IOException {
return EJsonReader.parseList(json, modifyAware);
}
- /**
- * Parse the json and return as a List.
- */
+ /** Parse the json and return as a List. */
@Override
public List