com.github.moaxcp.graphs.events.EdgeCreated Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphs Show documentation
Show all versions of graphs Show documentation
dynamic graphs supporting streams and an EventBus
package com.github.moaxcp.graphs.events;
public final class EdgeCreated extends EdgeOptionalIdEvent {
private EdgeCreated(Builder builder) {
super(builder);
}
@SuppressWarnings("squid:S2176")
public static final class Builder extends EdgeOptionalIdEvent.Builder> {
@Override
public Builder self() {
return this;
}
@Override
public EdgeCreated build() {
return new EdgeCreated<>(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy