com.github.cliftonlabs.json_simple.JsonArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-simple Show documentation
Show all versions of json-simple Show documentation
Java 7+ toolkit to quickly develop RFC 4627 JSON compatible applications.
/* Copyright 2016-2017 Clifton Labs
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License. */
package com.github.cliftonlabs.json_simple;
import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
/** JsonArray is a common non-thread safe data format for a collection of data. The contents of a JsonArray are only
* validated as JSON values on serialization. Meaning all values added to a JsonArray must be recognized by the Jsoner
* for it to be a true 'JsonArray', so it is really a JsonableArrayList that will serialize to a JsonArray if all of
* its contents are valid JSON.
* @see Jsoner
* @since 2.0.0 */
public class JsonArray extends ArrayList