Package net.mcreator.util.locale
Record Class LocaleRegistration
java.lang.Object
java.lang.Record
net.mcreator.util.locale.LocaleRegistration
public record LocaleRegistration(ResourceBundle resourceBundle, int uiTextsPercentage, int helpTipsPercentage)
extends Record
-
Constructor Summary
ConstructorDescriptionLocaleRegistration
(ResourceBundle resourceBundle, int uiTextsPercentage, int helpTipsPercentage) Creates an instance of aLocaleRegistration
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of thehelpTipsPercentage
record component.Returns the value of theresourceBundle
record component.final String
toString()
Returns a string representation of this record class.int
Returns the value of theuiTextsPercentage
record component.
-
Constructor Details
-
LocaleRegistration
public LocaleRegistration(ResourceBundle resourceBundle, int uiTextsPercentage, int helpTipsPercentage) Creates an instance of aLocaleRegistration
record class.- Parameters:
resourceBundle
- the value for theresourceBundle
record componentuiTextsPercentage
- the value for theuiTextsPercentage
record componenthelpTipsPercentage
- the value for thehelpTipsPercentage
record 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
resourceBundle
Returns the value of theresourceBundle
record component.- Returns:
- the value of the
resourceBundle
record component
-
uiTextsPercentage
public int uiTextsPercentage()Returns the value of theuiTextsPercentage
record component.- Returns:
- the value of the
uiTextsPercentage
record component
-
helpTipsPercentage
public int helpTipsPercentage()Returns the value of thehelpTipsPercentage
record component.- Returns:
- the value of the
helpTipsPercentage
record component
-