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
-
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. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
from
-
to
-
left
-
right
-