Record Class StronglyConnectedComponent
java.lang.Object
java.lang.Record
dev.archunitjava.projection.StronglyConnectedComponent
- All Implemented Interfaces:
Comparable<StronglyConnectedComponent>
public record StronglyConnectedComponent(List<StableId> nodes, boolean cyclic)
extends Record
implements Comparable<StronglyConnectedComponent>
One deterministic maximal set of mutually reachable graph nodes.
-
Constructor Summary
ConstructorsConstructorDescriptionStronglyConnectedComponent(List<StableId> nodes, boolean cyclic) Creates an instance of aStronglyConnectedComponentrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintbooleancyclic()Returns the value of thecyclicrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.nodes()Returns the value of thenodesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
StronglyConnectedComponent
-
-
Method Details
-
compareTo
- Specified by:
compareToin interfaceComparable<StronglyConnectedComponent>
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
nodes
-
cyclic
public boolean cyclic()Returns the value of thecyclicrecord component.- Returns:
- the value of the
cyclicrecord component
-