Record Class Font.UnihexFont.Override
java.lang.Object
java.lang.Record
com.github.darksoulq.abyssallib.server.resource.asset.Font.UnihexFont.Override
- Record Components:
from- Start unicode integer boundary.to- End unicode integer boundary.left- Left spacing pixel amount.right- Right spacing pixel amount.
- Enclosing class:
Font.UnihexFont
Represents a dimensional spacing override within the Unihex font.
-
Constructor Summary
ConstructorsConstructorDescriptionOverride(int from, int to, int left, int right) Creates an instance of aOverriderecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intfrom()Returns the value of thefromrecord component.final inthashCode()Returns a hash code value for this object.intleft()Returns the value of theleftrecord component.intright()Returns the value of therightrecord component.intto()Returns the value of thetorecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Override
public Override(int from, int to, int left, int right) Creates an instance of aOverriderecord class.
-
-
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 '=='. -
from
public int from()Returns the value of thefromrecord component.- Returns:
- the value of the
fromrecord component
-
to
public int to()Returns the value of thetorecord component.- Returns:
- the value of the
torecord component
-
left
public int left()Returns the value of theleftrecord component.- Returns:
- the value of the
leftrecord component
-
right
public int right()Returns the value of therightrecord component.- Returns:
- the value of the
rightrecord component
-