Package gg.xp.xivsupport.models
Record Class CurrentMaxPairImpl
java.lang.Object
java.lang.Record
gg.xp.xivsupport.models.CurrentMaxPairImpl
- All Implemented Interfaces:
CurrentMaxPair
-
Constructor Summary
ConstructorDescriptionCurrentMaxPairImpl
(long current, long max) Creates an instance of aCurrentMaxPairImpl
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
current()
Returns the value of thecurrent
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.long
max()
Returns the value of themax
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface gg.xp.xivsupport.models.CurrentMaxPair
getPercent, getShortString, isEmpty, isFull
-
Constructor Details
-
CurrentMaxPairImpl
public CurrentMaxPairImpl(long current, long max) Creates an instance of aCurrentMaxPairImpl
record class.- Parameters:
current
- the value for thecurrent
record componentmax
- the value for themax
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 with '=='. -
current
public long current()Returns the value of thecurrent
record component.- Specified by:
current
in interfaceCurrentMaxPair
- Returns:
- the value of the
current
record component
-
max
public long max()Returns the value of themax
record component.- Specified by:
max
in interfaceCurrentMaxPair
- Returns:
- the value of the
max
record component
-