Enum Class RequestStatus

java.lang.Object
java.lang.Enum<RequestStatus>
dk.minepay.server.bukkit.classes.RequestStatus
All Implemented Interfaces:
Serializable, Comparable<RequestStatus>, Constable

public enum RequestStatus extends Enum<RequestStatus>
Enum representing the status of a request.
  • Enum Constant Details

    • pending

      public static final RequestStatus pending
      The request is pending.
    • cancelled

      public static final RequestStatus cancelled
      The request has been cancelled.
    • accepted

      public static final RequestStatus accepted
      The request has been accepted.
  • Method Details

    • values

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

      public static RequestStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static RequestStatus fromString(String status)
      Converts a string to a request status.
      Parameters:
      status - the string to convert
      Returns:
      the request status