
org.neo4j.shell.kernel.apps.NodeOrRelationship Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-shell Show documentation
Show all versions of neo4j-shell Show documentation
A generic command shell with a client and server part.
/*
* Copyright (c) 2002-2016 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.shell.kernel.apps;
import java.util.ArrayList;
import org.neo4j.graphdb.Direction;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.PropertyContainer;
import org.neo4j.graphdb.Relationship;
public abstract class NodeOrRelationship
{
public static final String TYPE_NODE = "n";
public static final String TYPE_RELATIONSHIP = "r";
public static NodeOrRelationship wrap( Node node )
{
return new WrapNode( node );
}
public static NodeOrRelationship wrap( Relationship rel )
{
return new WrapRelationship( rel );
}
public static NodeOrRelationship wrap( PropertyContainer entity )
{
return entity instanceof Node ? wrap( (Node) entity ) : wrap( (Relationship) entity );
}
private final Object nodeOrRelationship;
NodeOrRelationship( Object nodeOrRelationship )
{
this.nodeOrRelationship = nodeOrRelationship;
}
public boolean isNode()
{
return nodeOrRelationship instanceof Node;
}
public Node asNode()
{
return (Node) nodeOrRelationship;
}
public boolean isRelationship()
{
return nodeOrRelationship instanceof Relationship;
}
public Relationship asRelationship()
{
return (Relationship) nodeOrRelationship;
}
public PropertyContainer asPropertyContainer()
{
return (PropertyContainer) nodeOrRelationship;
}
public TypedId getTypedId()
{
return new TypedId( getType(), getId() );
}
abstract String getType();
public abstract long getId();
public abstract boolean hasProperty( String key );
public abstract Object getProperty( String key );
public abstract Object getProperty( String key, Object defaultValue );
public abstract void setProperty( String key, Object value );
public abstract Object removeProperty( String key );
public abstract Iterable getPropertyKeys();
public abstract Iterable getRelationships(
Direction direction );
@Override
public boolean equals( Object o )
{
if ( !( o instanceof NodeOrRelationship ) )
{
return false;
}
return getTypedId().equals( ( (NodeOrRelationship) o ).getTypedId() );
}
@Override
public int hashCode()
{
return getTypedId().hashCode();
}
static class WrapNode extends NodeOrRelationship
{
private WrapNode( Node node )
{
super( node );
}
private Node object()
{
return asNode();
}
@Override
public String getType()
{
return TYPE_NODE;
}
@Override
public long getId()
{
return object().getId();
}
@Override
public boolean hasProperty( String key )
{
return object().hasProperty( key );
}
@Override
public Object getProperty( String key )
{
return object().getProperty( key );
}
@Override
public Object getProperty( String key, Object defaultValue )
{
return object().getProperty( key, defaultValue );
}
@Override
public void setProperty( String key, Object value )
{
object().setProperty( key, value );
}
@Override
public Object removeProperty( String key )
{
return object().removeProperty( key );
}
@Override
public Iterable getPropertyKeys()
{
return object().getPropertyKeys();
}
@Override
public Iterable getRelationships( Direction direction )
{
return object().getRelationships( direction );
}
@Override
public String toString()
{
return "Shell wrapped node [" + asNode() + "]";
}
}
static class WrapRelationship extends NodeOrRelationship
{
private WrapRelationship( Relationship rel )
{
super( rel );
}
private Relationship object()
{
return asRelationship();
}
@Override
public String getType()
{
return TYPE_RELATIONSHIP;
}
@Override
public long getId()
{
return object().getId();
}
@Override
public boolean hasProperty( String key )
{
return object().hasProperty( key );
}
@Override
public Object getProperty( String key )
{
return object().getProperty( key );
}
@Override
public Object getProperty( String key, Object defaultValue )
{
return object().getProperty( key, defaultValue );
}
@Override
public void setProperty( String key, Object value )
{
object().setProperty( key, value );
}
@Override
public Object removeProperty( String key )
{
return object().removeProperty( key );
}
@Override
public Iterable getPropertyKeys()
{
return object().getPropertyKeys();
}
@Override
public Iterable getRelationships( Direction direction )
{
return new ArrayList<>();
}
@Override
public String toString()
{
return "Shell wrapped relationship [" + asRelationship() + "]";
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy