Package jadex.micro.philosophers
Record Class AbstractTableGui.PaintData
java.lang.Object
java.lang.Record
jadex.micro.philosophers.AbstractTableGui.PaintData
- Enclosing class:
AbstractTableGui
public static record AbstractTableGui.PaintData(PhilosopherState[] state, Integer[] eatcnt, Integer[] stickowner)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionPaintData
(int n) PaintData
(PhilosopherState[] state, Integer[] eatcnt, Integer[] stickowner) Creates an instance of aPaintData
record class. -
Method Summary
Modifier and TypeMethodDescriptionInteger[]
eatcnt()
Returns the value of theeatcnt
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.state()
Returns the value of thestate
record component.Integer[]
Returns the value of thestickowner
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PaintData
public PaintData(int n) -
PaintData
Creates an instance of aPaintData
record class.- Parameters:
state
- the value for thestate
record componenteatcnt
- the value for theeatcnt
record componentstickowner
- the value for thestickowner
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-
eatcnt
Returns the value of theeatcnt
record component.- Returns:
- the value of the
eatcnt
record component
-
stickowner
Returns the value of thestickowner
record component.- Returns:
- the value of the
stickowner
record component
-