Enum WarpRentType

java.lang.Object
java.lang.Enum<WarpRentType>
com.olziedev.playerwarps.api.warp.WarpRentType
All Implemented Interfaces:
Serializable, Comparable<WarpRentType>, java.lang.constant.Constable

public enum WarpRentType extends Enum<WarpRentType>
List of all possible outcome types when a rent is needed.
  • Enum Constant Details

    • SUCCESS

      public static final WarpRentType SUCCESS
      This constant is when the rent type was successful. (The player had the money to pay) This is used to determine what message to send to the player and is used in the PlayerWarpRentEvent.getRentType() method.
    • ERROR

      public static final WarpRentType ERROR
      This constant is when the rent type was not successful. (The player had no money to pay) This is used to determine what message to send to the player and is used in the PlayerWarpRentEvent.getRentType() method.
  • Method Details

    • values

      public static WarpRentType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static WarpRentType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • sendMessage

      public void sendMessage(WPlayer warpPlayer, Warp warp, FileConfiguration configuration)
      Sends a message to a player about their rent status depending on the enum instance.
      Parameters:
      warpPlayer - The player that will receive the message.
      warp - The warp that the rent has been triggered from.
      configuration - The configuration object to grab the appropriate message from.