Record Class AutoTargetSettings
java.lang.Object
java.lang.Record
com.monkey.ultimatebot.common.model.AutoTargetSettings
Immutable automatic-targeting configuration.
-
Constructor Summary
ConstructorsConstructorDescriptionAutoTargetSettings(boolean enabled, double range) Creates an instance of aAutoTargetSettingsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()Returns the value of theenabledrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.doublerange()Returns the value of therangerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AutoTargetSettings
public AutoTargetSettings(boolean enabled, double range) Creates an instance of aAutoTargetSettingsrecord class.- Parameters:
enabled- the value for theenabledrecord componentrange- the value for therangerecord 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. All components in this record class are compared with '=='. -
enabled
public boolean enabled()Returns the value of theenabledrecord component.- Returns:
- the value of the
enabledrecord component
-
range
public double range()Returns the value of therangerecord component.- Returns:
- the value of the
rangerecord component
-