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
ConstructorsConstructorDescriptionCurrentMaxPairImpl(long current, long max) Creates an instance of aCurrentMaxPairImplrecord class. -
Method Summary
Modifier and TypeMethodDescriptionlongcurrent()Returns the value of thecurrentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.longmax()Returns the value of themaxrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods 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 aCurrentMaxPairImplrecord class.- Parameters:
current- the value for thecurrentrecord componentmax- the value for themaxrecord 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 thecurrentrecord component.- Specified by:
currentin interfaceCurrentMaxPair- Returns:
- the value of the
currentrecord component
-
max
public long max()Returns the value of themaxrecord component.- Specified by:
maxin interfaceCurrentMaxPair- Returns:
- the value of the
maxrecord component
-