Record Class STNURTE.NodeOccurrence
java.lang.Object
java.lang.Record
it.univr.di.cstnu.algorithms.STNURTE.NodeOccurrence
- Record Components:
occurrenceTime- execution time of the nodes innodesnodes- set of nodes executed at timeoccurrenceTime
- Enclosing class:
STNURTE
public static record STNURTE.NodeOccurrence(int occurrenceTime, Set<LabeledNode> nodes)
extends Record
Node occurrence
(t, nodes).
t represents an execution time, and 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 aNodeOccurrencerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.intReturns the value of theoccurrenceTimerecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
NodeOccurrence
Creates an instance of aNodeOccurrencerecord class.- Parameters:
occurrenceTime- the value for theoccurrenceTimerecord componentnodes- the value for thenodesrecord component
-
-
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 thecomparemethod from their corresponding wrapper classes. -
occurrenceTime
public int occurrenceTime()Returns the value of theoccurrenceTimerecord component.- Returns:
- the value of the
occurrenceTimerecord component
-
nodes
-