Contents
Record Class STNURTE.NodeOccurrence
java.lang.Object
java.lang.Record
it.univr.di.cstnu.algorithms.STNURTE.NodeOccurrence
- Enclosing class:
STNURTE
public static record STNURTE.NodeOccurrence(int occurrenceTime, Set<LabeledNode> nodes)
extends Record
Node occurrence
(t, nodes)
.t
represent an execution time. nodes
the set of nodes executed at time t
. nodes
can be empty but not null.-
Constructor Summary
ConstructorsConstructorDescriptionNodeOccurrence
(int occurrenceTime, Set<LabeledNode> nodes) Creates an instance of aNodeOccurrence
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.nodes()
Returns the value of thenodes
record component.int
Returns the value of theoccurrenceTime
record component.toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
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 thecompare
method from their corresponding wrapper classes. -
occurrenceTime
public int occurrenceTime()Returns the value of theoccurrenceTime
record component.- Returns:
- the value of the
occurrenceTime
record component
-
nodes
Returns the value of thenodes
record component.- Returns:
- the value of the
nodes
record component
-