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 aPaintDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionInteger[]eatcnt()Returns the value of theeatcntrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.state()Returns the value of thestaterecord component.Integer[]Returns the value of thestickownerrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PaintData
public PaintData(int n) -
PaintData
Creates an instance of aPaintDatarecord class.- Parameters:
state- the value for thestaterecord componenteatcnt- the value for theeatcntrecord componentstickowner- the value for thestickownerrecord 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 thestaterecord component.- Returns:
- the value of the
staterecord component
-
eatcnt
Returns the value of theeatcntrecord component.- Returns:
- the value of the
eatcntrecord component
-
stickowner
Returns the value of thestickownerrecord component.- Returns:
- the value of the
stickownerrecord component
-