Record Class PerkNumber
java.lang.Object
java.lang.Record
generation.builders.PerkNumber
-
Constructor Summary
ConstructorsConstructorDescriptionPerkNumber(PerkFactory.Perk perk, int number) Creates an instance of aPerkNumberrecord 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.intnumber()Returns the value of thenumberrecord component.perk()Returns the value of theperkrecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
PerkNumber
Creates an instance of aPerkNumberrecord class.- Parameters:
perk- the value for theperkrecord componentnumber- the value for thenumberrecord 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. -
perk
Returns the value of theperkrecord component.- Returns:
- the value of the
perkrecord component
-
number
public int number()Returns the value of thenumberrecord component.- Returns:
- the value of the
numberrecord component
-