
org.neo4j.driver.internal.value.ValueAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-java-driver Show documentation
Show all versions of neo4j-java-driver Show documentation
Access to the Neo4j graph database through Java
/**
* Copyright (c) 2002-2016 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.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
*
* 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 org.neo4j.driver.internal.value;
import java.util.List;
import java.util.Map;
import org.neo4j.driver.internal.types.TypeConstructor;
import org.neo4j.driver.internal.types.TypeRepresentation;
import org.neo4j.driver.internal.util.Extract;
import org.neo4j.driver.v1.Entity;
import org.neo4j.driver.v1.Function;
import org.neo4j.driver.v1.Identity;
import org.neo4j.driver.v1.Node;
import org.neo4j.driver.v1.Pair;
import org.neo4j.driver.v1.Path;
import org.neo4j.driver.v1.Relationship;
import org.neo4j.driver.v1.Type;
import org.neo4j.driver.v1.Value;
import org.neo4j.driver.v1.exceptions.value.NotMultiValued;
import org.neo4j.driver.v1.exceptions.value.Uncoercible;
import org.neo4j.driver.v1.exceptions.value.Unsizable;
import static java.lang.String.format;
import static java.util.Collections.emptyList;
import static org.neo4j.driver.internal.value.InternalValue.Format.VALUE_ONLY;
import static org.neo4j.driver.v1.Values.valueAsIs;
public abstract class ValueAdapter implements InternalValue
{
@Override
public Value asValue()
{
return this;
}
@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;
}
public boolean containsKey( String key )
{
throw new NotMultiValued( type().name() + " is not a keyed collection" );
}
@Override
public String asString()
{
throw new Uncoercible( type().name(), "Java String" );
}
public String asLiteralString()
{
throw new Uncoercible( type().name(), "Java String representation of Cypher literal" );
}
@Override
public long asLong()
{
throw new Uncoercible( type().name(), "Java long" );
}
@Override
public int asInt()
{
throw new Uncoercible( type().name(), "Java int" );
}
public short asShort()
{
throw new Uncoercible( type().name(), "Java short" );
}
public byte asByte()
{
throw new Uncoercible( type().name(), "Java byte" );
}
@Override
public float asFloat()
{
throw new Uncoercible( type().name(), "Java float" );
}
@Override
public double asDouble()
{
throw new Uncoercible( type().name(), "Java double" );
}
@Override
public boolean asBoolean()
{
throw new Uncoercible( type().name(), "Java boolean" );
}
@Override
public List asList()
{
return asList( valueAsIs() );
}
@Override
public List asList( Function mapFunction )
{
throw new Uncoercible( type().name(), "Java List" );
}
@Override
public Map asMap()
{
return asMap( valueAsIs() );
}
@Override
public Map asMap( Function mapFunction )
{
throw new Uncoercible( type().name(), "Java Map" );
}
@Override
public Object asObject()
{
throw new Uncoercible( type().name(), "Java Object" );
}
@Override
public Number asNumber()
{
throw new Uncoercible( type().name(), "Java Number" );
}
@Override
public Identity asIdentity()
{
throw new Uncoercible( type().name(), "Identity" );
}
@Override
public Entity asEntity()
{
throw new Uncoercible( type().name(), "Entity" );
}
@Override
public Node asNode()
{
throw new Uncoercible( type().name(), "Node" );
}
@Override
public Path asPath()
{
throw new Uncoercible( type().name(), "Path" );
}
@Override
public Relationship asRelationship()
{
throw new Uncoercible( type().name(), "Relationship" );
}
@Override
public Value get( int index )
{
throw new NotMultiValued( type().name() + " is not an indexed collection" );
}
@Override
public Value get( String key )
{
throw new NotMultiValued( type().name() + " is not a keyed collection" );
}
@Override
public int size()
{
throw new Unsizable( type().name() + " does not have size" );
}
@Override
public Iterable keys()
{
return emptyList();
}
@Override
public boolean isEmpty()
{
return ! values().iterator().hasNext();
}
@Override
public Iterable values()
{
return values( valueAsIs() );
}
@Override
public Iterable values( Function mapFunction )
{
throw new NotMultiValued( type().name() + " is not iterable" );
}
@Override
public Iterable> properties()
{
return properties( valueAsIs() );
}
@Override
public Iterable> properties( final Function mapFunction )
{
return Extract.properties( this, mapFunction );
}
public String toString()
{
return toString( VALUE_ONLY );
}
protected String maybeWithType( boolean includeType, String text )
{
return includeType ? withType( text ) : text;
}
private String withType( String text )
{
return format( "%s :: %s", text, type().name() );
}
@Override
public final TypeConstructor typeConstructor()
{
return ( (TypeRepresentation) type() ).constructor();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy