All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.org.apache.calcite.util.graph.DirectedGraph Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in com.hazelcast.com.liance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.com.hazelcast.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.hazelcast.org.apache.calcite.util.graph;

import java.util.Collection;
import java.util.List;
import java.util.Set;

/**
 * Directed graph.
 *
 * @param  Vertex type
 * @param  Edge type
 */
public interface DirectedGraph {
  /** Adds a vertex to this graph.
   *
   * @param vertex Vertex
   * @return Whether vertex was added
   */
  boolean addVertex(V vertex);

  /** Adds an edge to this graph.
   *
   * @param vertex Source vertex
   * @param targetVertex Target vertex
   * @return New edge, if added, otherwise null
   * @throws IllegalArgumentException if either vertex is not already in graph
   */
  E addEdge(V vertex, V targetVertex);

  E getEdge(V source, V target);

  boolean removeEdge(V vertex, V targetVertex);

  Set vertexSet();

  /** Removes from this graph all vertices that are in {@code collection},
   * and the edges into and out of those vertices. */
  void removeAllVertices(Collection collection);

  List getOutwardEdges(V source);

  List getInwardEdges(V vertex);

  Set edgeSet();

  /** Factory for edges.
   *
   * @param  Vertex type
   * @param  Edge type
   */
  interface EdgeFactory {
    E createEdge(V v0, V v1);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy