Record Class PerkNumber
java.lang.Object
java.lang.Record
generation.builders.PerkNumber
-
Constructor Summary
ConstructorsConstructorDescriptionPerkNumber
(PerkFactory.Perk perk, int number) Creates an instance of aPerkNumber
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.int
number()
Returns the value of thenumber
record component.perk()
Returns the value of theperk
record component.toString()
Returns a string representation of this record class.
-
Constructor Details
-
PerkNumber
Creates an instance of aPerkNumber
record class.- Parameters:
perk
- the value for theperk
record componentnumber
- the value for thenumber
record 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 thecompare
method from their corresponding wrapper classes. -
perk
Returns the value of theperk
record component.- Returns:
- the value of the
perk
record component
-
number
public int number()Returns the value of thenumber
record component.- Returns:
- the value of the
number
record component
-