Package gg.xp.xivsupport.models
Record Class ManaPoints
java.lang.Object
java.lang.Record
gg.xp.xivsupport.models.ManaPoints
- All Implemented Interfaces:
CurrentMaxPair
,Serializable
public record ManaPoints(long current, long max)
extends Record
implements CurrentMaxPair, Serializable
- See Also:
-
Constructor Summary
ConstructorDescriptionManaPoints
(long current, long max) Creates an instance of aManaPoints
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
current()
Returns the value of thecurrent
record component.boolean
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for this object.long
max()
Returns the value of themax
record component.static ManaPoints
of
(long current, long max) 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
-
ManaPoints
public ManaPoints(long current, long max) Creates an instance of aManaPoints
record class.- Parameters:
current
- the value for thecurrent
record componentmax
- the value for themax
record component
-
-
Method Details
-
of
-
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
-
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. -
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 '=='. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
-