Record Class UnihexProvider.OverrideRange
java.lang.Object
java.lang.Record
net.minecraft.client.gui.font.providers.UnihexProvider.OverrideRange
- Enclosing class:
UnihexProvider
private static record UnihexProvider.OverrideRange(int from, int to, UnihexProvider.Dimensions dimensions)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<UnihexProvider.OverrideRange> private final UnihexProvider.DimensionsThe field for thedimensionsrecord component.private final intThe field for thefromrecord component.private static final com.mojang.serialization.Codec<UnihexProvider.OverrideRange> private final intThe field for thetorecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateOverrideRange(int from, int to, UnihexProvider.Dimensions dimensions) Creates an instance of aOverrideRangerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedimensionsrecord component.final 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.intto()Returns the value of thetorecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
from
private final int fromThe field for thefromrecord component. -
to
private final int toThe field for thetorecord component. -
dimensions
The field for thedimensionsrecord component. -
RAW_CODEC
-
CODEC
-
-
Constructor Details
-
OverrideRange
Creates an instance of aOverrideRangerecord class.- Parameters:
from- the value for thefromrecord componentto- the value for thetorecord componentdimensions- the value for thedimensionsrecord component
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
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
-
dimensions
Returns the value of thedimensionsrecord component.- Returns:
- the value of the
dimensionsrecord component
-