mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
197 lines
5.4 KiB
Java
197 lines
5.4 KiB
Java
package com.google.gson;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigInteger;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JsonArray extends JsonElement implements Iterable<JsonElement> {
|
|
private final List<JsonElement> elements;
|
|
|
|
public JsonArray() {
|
|
this.elements = new ArrayList();
|
|
}
|
|
|
|
public JsonArray(int i) {
|
|
this.elements = new ArrayList(i);
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public JsonArray deepCopy() {
|
|
if (!this.elements.isEmpty()) {
|
|
JsonArray jsonArray = new JsonArray(this.elements.size());
|
|
Iterator<JsonElement> it = this.elements.iterator();
|
|
while (it.hasNext()) {
|
|
jsonArray.add(it.next().deepCopy());
|
|
}
|
|
return jsonArray;
|
|
}
|
|
return new JsonArray();
|
|
}
|
|
|
|
public void add(Boolean bool) {
|
|
this.elements.add(bool == null ? JsonNull.INSTANCE : new JsonPrimitive(bool));
|
|
}
|
|
|
|
public void add(Character ch) {
|
|
this.elements.add(ch == null ? JsonNull.INSTANCE : new JsonPrimitive(ch));
|
|
}
|
|
|
|
public void add(Number number) {
|
|
this.elements.add(number == null ? JsonNull.INSTANCE : new JsonPrimitive(number));
|
|
}
|
|
|
|
public void add(String str) {
|
|
this.elements.add(str == null ? JsonNull.INSTANCE : new JsonPrimitive(str));
|
|
}
|
|
|
|
public void add(JsonElement jsonElement) {
|
|
if (jsonElement == null) {
|
|
jsonElement = JsonNull.INSTANCE;
|
|
}
|
|
this.elements.add(jsonElement);
|
|
}
|
|
|
|
public void addAll(JsonArray jsonArray) {
|
|
this.elements.addAll(jsonArray.elements);
|
|
}
|
|
|
|
public JsonElement set(int i, JsonElement jsonElement) {
|
|
return this.elements.set(i, jsonElement);
|
|
}
|
|
|
|
public boolean remove(JsonElement jsonElement) {
|
|
return this.elements.remove(jsonElement);
|
|
}
|
|
|
|
public JsonElement remove(int i) {
|
|
return this.elements.remove(i);
|
|
}
|
|
|
|
public boolean contains(JsonElement jsonElement) {
|
|
return this.elements.contains(jsonElement);
|
|
}
|
|
|
|
public int size() {
|
|
return this.elements.size();
|
|
}
|
|
|
|
public boolean isEmpty() {
|
|
return this.elements.isEmpty();
|
|
}
|
|
|
|
@Override // java.lang.Iterable
|
|
public Iterator<JsonElement> iterator() {
|
|
return this.elements.iterator();
|
|
}
|
|
|
|
public JsonElement get(int i) {
|
|
return this.elements.get(i);
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public Number getAsNumber() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsNumber();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public String getAsString() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsString();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public double getAsDouble() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsDouble();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public BigDecimal getAsBigDecimal() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsBigDecimal();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public BigInteger getAsBigInteger() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsBigInteger();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public float getAsFloat() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsFloat();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public long getAsLong() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsLong();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public int getAsInt() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsInt();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public byte getAsByte() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsByte();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public char getAsCharacter() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsCharacter();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public short getAsShort() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsShort();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public boolean getAsBoolean() {
|
|
if (this.elements.size() == 1) {
|
|
return this.elements.get(0).getAsBoolean();
|
|
}
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return obj == this || ((obj instanceof JsonArray) && ((JsonArray) obj).elements.equals(this.elements));
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.elements.hashCode();
|
|
}
|
|
}
|