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

ai.stapi.graphoperations.graphReader.readResults.NodeReadResult Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.graphReader.readResults;

import ai.stapi.graph.traversableGraphElements.TraversableNode;

public class NodeReadResult extends AbstractGraphElementReadResult {

  public NodeReadResult(TraversableNode node) {
    super(node);
  }

  public TraversableNode getNode() {
    return (TraversableNode) this.getGraphElement();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy