com.helger.graph.impl.GraphRelation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-graph Show documentation
Show all versions of ph-graph Show documentation
Java library with basic graph implementations
The newest version!
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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.helger.graph.impl;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.impl.CommonsLinkedHashSet;
import com.helger.commons.collection.impl.ICommonsOrderedSet;
import com.helger.commons.hashcode.HashCodeGenerator;
import com.helger.commons.string.ToStringGenerator;
import com.helger.graph.IMutableGraphNode;
import com.helger.graph.IMutableGraphRelation;
/**
* Default implementation of the {@link IMutableGraphRelation} interface
*
* @author Philip Helger
*/
@NotThreadSafe
public class GraphRelation extends AbstractBaseGraphObject implements IMutableGraphRelation
{
private final IMutableGraphNode m_aNode1;
private final IMutableGraphNode m_aNode2;
public GraphRelation (@Nonnull final IMutableGraphNode aNode1, @Nonnull final IMutableGraphNode aNode2)
{
this (null, aNode1, aNode2);
}
public GraphRelation (@Nullable final String sID, @Nonnull final IMutableGraphNode aNode1, @Nonnull final IMutableGraphNode aNode2)
{
super (sID);
ValueEnforcer.notNull (aNode1, "Node1");
ValueEnforcer.notNull (aNode2, "Node2");
m_aNode1 = aNode1;
m_aNode2 = aNode2;
}
public final boolean isDirected ()
{
return false;
}
public boolean isRelatedTo (@Nullable final IMutableGraphNode aNode)
{
return aNode != null && (m_aNode1.equals (aNode) || m_aNode2.equals (aNode));
}
@Nonnull
@ReturnsMutableCopy
public ICommonsOrderedSet getAllConnectedNodes ()
{
return new CommonsLinkedHashSet <> (m_aNode1, m_aNode2);
}
@Nonnull
@ReturnsMutableCopy
public ICommonsOrderedSet getAllConnectedNodeIDs ()
{
return new CommonsLinkedHashSet <> (m_aNode1.getID (), m_aNode2.getID ());
}
@Nonnull
public IMutableGraphNode getNode1 ()
{
return m_aNode1;
}
@Nonnull
public IMutableGraphNode getNode2 ()
{
return m_aNode2;
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (!super.equals (o))
return false;
final GraphRelation rhs = (GraphRelation) o;
return m_aNode1.equals (rhs.m_aNode1) && m_aNode2.equals (rhs.m_aNode2);
}
@Override
public int hashCode ()
{
return HashCodeGenerator.getDerived (super.hashCode ()).append (m_aNode1).append (m_aNode2).getHashCode ();
}
@Override
public String toString ()
{
return ToStringGenerator.getDerived (super.toString ()).append ("node1", m_aNode1).append ("node2", m_aNode2).getToString ();
}
}