Package megamek.common.battlevalue
Record Class BVCalculator.AssembledAmmo
java.lang.Object
java.lang.Record
megamek.common.battlevalue.BVCalculator.AssembledAmmo
- Enclosing class:
- BVCalculator
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionammoMap()
Returns the value of theammoMap
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.keys()
Returns the value of thekeys
record component.names()
Returns the value of thenames
record component.final String
toString()
Returns a string representation of this record class.Returns the value of theweaponsForExcessiveAmmo
record component.
-
Constructor Details
-
AssembledAmmo
protected AssembledAmmo(Map<String, Double> weaponsForExcessiveAmmo, Map<String, Double> ammoMap, List<String> keys, Map<String, String> names) Creates an instance of aAssembledAmmo
record class.- Parameters:
weaponsForExcessiveAmmo
- the value for theweaponsForExcessiveAmmo
record componentammoMap
- the value for theammoMap
record componentkeys
- the value for thekeys
record componentnames
- the value for thenames
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
weaponsForExcessiveAmmo
Returns the value of theweaponsForExcessiveAmmo
record component.- Returns:
- the value of the
weaponsForExcessiveAmmo
record component
-
ammoMap
Returns the value of theammoMap
record component.- Returns:
- the value of the
ammoMap
record component
-
keys
Returns the value of thekeys
record component.- Returns:
- the value of the
keys
record component
-
names
Returns the value of thenames
record component.- Returns:
- the value of the
names
record component
-