Class AreaMultiplier

java.lang.Object
com.vk2gpz.autosell.object.AreaMultiplier

public class AreaMultiplier extends Object
Represents an area multiplier with an identifier, priority, permission, multiplier value, and a list of areas.
  • Constructor Details

    • AreaMultiplier

      public AreaMultiplier(String identifier)
      Constructs an AreaMultiplier with the specified identifier.
      Parameters:
      identifier - The identifier for this area multiplier.
  • Method Details

    • getIdentifier

      public String getIdentifier()
      Gets the identifier for this area multiplier.
      Returns:
      the identifier for this area multiplier.
    • setIdentifier

      public void setIdentifier(String identifier)
      Sets the identifier for this area multiplier.
      Parameters:
      identifier - The identifier for this area multiplier.
    • getPriority

      public int getPriority()
      Gets the priority of this area multiplier.
      Returns:
      the priority of this area multiplier.
    • setPriority

      public void setPriority(int priority)
      Sets the priority of this area multiplier.
      Parameters:
      priority - The priority of this area multiplier.
    • getPermission

      public String getPermission()
      Gets the permission required to use this area multiplier.
      Returns:
      the permission required to use this area multiplier.
    • setPermission

      public void setPermission(String permission)
      Sets the permission required to use this area multiplier.
      Parameters:
      permission - The permission required to use this area multiplier.
    • getMultiplier

      public double getMultiplier()
      Gets the multiplier value for this area multiplier.
      Returns:
      the multiplier value for this area multiplier.
    • setMultiplier

      public void setMultiplier(double multiplier)
      Sets the multiplier value for this area multiplier.
      Parameters:
      multiplier - The multiplier value for this area multiplier.
    • getAreas

      public List<String> getAreas()
      Gets the list of areas associated with this area multiplier.
      Returns:
      the list of areas associated with this area multiplier.
    • setAreas

      public void setAreas(List<String> areas)
      Sets the list of areas associated with this area multiplier.
      Parameters:
      areas - The list of areas associated with this area multiplier.