Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2023-2024 "Neo4j,"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* 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
*
* https://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 org.neo4j.jdbc.values;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
import java.time.ZonedDateTime;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
abstract class AbstractValue extends AbstractMapAccessorWithDefaultValue implements Value {
@Override
public boolean hasType(Type type) {
return type.isTypeOf(this);
}
@Override
public boolean isTrue() {
return false;
}
@Override
public boolean isFalse() {
return false;
}
@Override
public boolean isNull() {
return false;
}
@Override
public boolean containsKey(String key) {
throw new NotMultiValuedException(type().name() + " is not a keyed collection");
}
@Override
public String asString() {
throw new UncoercibleException(type().name(), "Java String");
}
@Override
public boolean asBoolean(boolean defaultValue) {
return computeOrDefault(Value::asBoolean, defaultValue);
}
@Override
public String asString(String defaultValue) {
return computeOrDefault((Value::asString), defaultValue);
}
@Override
public long asLong(long defaultValue) {
return computeOrDefault(Value::asLong, defaultValue);
}
@Override
public int asInt(int defaultValue) {
return computeOrDefault(Value::asInt, defaultValue);
}
@Override
public double asDouble(double defaultValue) {
return computeOrDefault(Value::asDouble, defaultValue);
}
@Override
public float asFloat(float defaultValue) {
return computeOrDefault(Value::asFloat, defaultValue);
}
@Override
public long asLong() {
throw new UncoercibleException(type().name(), "Java long");
}
@Override
public int asInt() {
throw new UncoercibleException(type().name(), "Java int");
}
@Override
public float asFloat() {
throw new UncoercibleException(type().name(), "Java float");
}
@Override
public double asDouble() {
throw new UncoercibleException(type().name(), "Java double");
}
@Override
public boolean asBoolean() {
throw new UncoercibleException(type().name(), "Java boolean");
}
@Override
public List