Enum Class StatusEnum

java.lang.Object
java.lang.Enum<StatusEnum>
es.kukenan.smartfi.microservice.firm.api.enums.StatusEnum
All Implemented Interfaces:
Serializable, Comparable<StatusEnum>, Constable

public enum StatusEnum extends Enum<StatusEnum>
Enum for options of posible Statuses.
  • Enum Constant Details

    • PENDING

      public static final StatusEnum PENDING
      PENDING.
    • SIGNED

      public static final StatusEnum SIGNED
      SIGNED.
    • CANCELLED

      public static final StatusEnum CANCELLED
      CANCELLED.
    • EXPIRED

      public static final StatusEnum EXPIRED
      EXPIRED.
  • Field Details

    • name

      private final String name
      Status Name.
  • Constructor Details

    • StatusEnum

      private StatusEnum(String name)
      Default constructor.
      Parameters:
      name - name.
  • Method Details

    • values

      public static StatusEnum[] 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 StatusEnum 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
    • getName

      public String getName()
      Get status name.
      Returns:
      status name value