com.couchbase.columnar.client.java.json.JsonValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of couchbase-columnar-java-client Show documentation
Show all versions of couchbase-columnar-java-client Show documentation
The official Couchbase Columnar Java SDK
The newest version!
/*
* Copyright (c) 2016 Couchbase, Inc.
*
* 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.couchbase.columnar.client.java.json;
import reactor.util.annotation.Nullable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.List;
import java.util.Map;
import static com.couchbase.client.core.util.CbCollections.listOf;
/**
* A JSON container, either a {@link JsonObject} or a {@link JsonArray}.
*/
public abstract class JsonValue {
JsonValue() {
}
/**
* Helper method to check if the given item is a supported JSON item.
*
* @param item the value to check.
* @return true if supported, false otherwise.
*/
static boolean isSupportedType(@Nullable Object item) {
return item == null
|| item instanceof String
|| item instanceof Integer
|| item instanceof Long
|| item instanceof Double
|| item instanceof Boolean
|| item instanceof BigInteger
|| item instanceof BigDecimal
|| item instanceof JsonObject
|| item instanceof JsonArray;
}
/**
* Returns the given value converted to a type that passes the {@link #isSupportedType} test.
*
* @throws IllegalArgumentException if conversion is not possible.
*/
@SuppressWarnings("unchecked")
@Nullable
static Object coerce(@Nullable Object value) {
if (isSupportedType(value)) {
return value;
}
if (value instanceof Map) {
return JsonObject.from((Map) value);
}
if (value instanceof List) {
return JsonArray.from((List>) value);
}
if (value instanceof Iterable) {
return JsonArray.fromIterable((Iterable>) value);
}
throw new IllegalArgumentException("Unsupported type for JSON value: " + value.getClass() + " ; must be one of " + supportedTypeNames());
}
private static List supportedTypeNames() {
return listOf(
"String",
"Integer",
"Long",
"Double",
"Boolean",
"BigInteger",
"BigDecimal",
"JsonObject",
"JsonArray",
"Map",
"Iterable>",
"null"
);
}
}