com.g2forge.alexandria.data.graph.Edge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-collection Show documentation
Show all versions of ax-collection Show documentation
Extended collection API, which will evolve to encompass all ADTs.
package com.g2forge.alexandria.data.graph;
import lombok.Data;
@Data
class Edge {
protected final Node from;
protected final Node to;
}