org.jgrapht.demo.LabeledEdges Maven / Gradle / Ivy
/*
* (C) Copyright 2012-2018, by Barak Naveh and Contributors.
*
* JGraphT : a free Java graph-theory library
*
* See the CONTRIBUTORS.md file distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the
* GNU Lesser General Public License v2.1 or later
* which is available at
* http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html.
*
* SPDX-License-Identifier: EPL-2.0 OR LGPL-2.1-or-later
*/
package org.jgrapht.demo;
import org.jgrapht.*;
import org.jgrapht.graph.*;
import java.util.*;
/**
* An example of how to apply edge labels using a custom edge class.
*
* @author Barak Naveh
*/
public class LabeledEdges
{
private static final String FRIEND = "friend";
private static final String ENEMY = "enemy";
/**
* The starting point for the demo.
*
* @param args ignored.
*/
public static void main(String[] args)
{
// @example:create:begin
Graph graph = new DefaultDirectedGraph<>(RelationshipEdge.class);
ArrayList people = new ArrayList();
people.add("John");
people.add("James");
people.add("Sarah");
people.add("Jessica");
// John is everyone's friend
for (String person : people) {
graph.addVertex(person);
if (!person.equals("John")) {
graph.addEdge("John", person, new RelationshipEdge(FRIEND));
}
}
// Apparently James doesn't really like John
graph.addEdge("James", "John", new RelationshipEdge(ENEMY));
// Jessica is Sarah and James's friend
graph.addEdge("Jessica", "Sarah", new RelationshipEdge(FRIEND));
graph.addEdge("Jessica", "James", new RelationshipEdge(FRIEND));
// But Sarah doesn't really like James
graph.addEdge("Sarah", "James", new RelationshipEdge(ENEMY));
// @example:create:end
// @example:print:begin
for (RelationshipEdge edge : graph.edgeSet()) {
String v1 = graph.getEdgeSource(edge);
String v2 = graph.getEdgeTarget(edge);
if (edge.getLabel().equals("enemy")) {
System.out.printf(v1 + " is an enemy of " + v2 + "\n");
} else if (edge.getLabel().equals("friend")) {
System.out.printf(v1 + " is a friend of " + v2 + "\n");
}
}
// @example:print:end
assert (isEnemyOf(graph, "James", "John"));
}
// @example:isEnemyOf:begin
private static boolean isEnemyOf(
Graph graph, String person1, String person2)
{
return graph.getEdge(person1, person2).getLabel().equals(ENEMY);
}
// @example:isEnemyOf:end
}
/**
* Custom edge class labeled with relationship type.
*/
// @example:edgeclass:begin
class RelationshipEdge
extends
DefaultEdge
{
private String label;
/**
* Constructs a relationship edge
*
* @param label the label of the new edge.
*
*/
public RelationshipEdge(String label)
{
this.label = label;
}
/**
* Gets the label associated with this edge.
*
* @return edge label
*/
public String getLabel()
{
return label;
}
@Override
public String toString()
{
return "(" + getSource() + " : " + getTarget() + " : " + label + ")";
}
}
// @example:edgeclass:end