Interface QuoteRequestState

All Superinterfaces:
JsonEnum
All Known Implementing Classes:
QuoteRequestState.QuoteRequestStateEnum

public interface QuoteRequestState extends JsonEnum

Predefined states tracking the status of the Quote Request in the negotiation process.

  • Field Details

    • SUBMITTED

      static final QuoteRequestState SUBMITTED

      Initial state of the negotiation process. Indicates that the Quote Request has been submitted by the Buyer, but the Seller has not yet decided whether to accept or to reject the request.

    • ACCEPTED

      static final QuoteRequestState ACCEPTED

      Indicates that the Quote Request has been accepted by the Seller and the negotiation process continues with preparing a Staged Quote for the Buyer.

    • CLOSED

      static final QuoteRequestState CLOSED

      Final state of the negotiation process. Indicates that the Quote Request had been accepted by the Seller and there is no further action that can be performed by any party.

    • REJECTED

      static final QuoteRequestState REJECTED

      Indicates that the Quote Request has been rejected by the Seller and the negotiation process terminated.

    • CANCELLED

      static final QuoteRequestState CANCELLED

      Indicates that the Buyer has withdrawn the Quote Request.

  • Method Details

    • getJsonName

      String getJsonName()
      the JSON value
      Specified by:
      getJsonName in interface JsonEnum
      Returns:
      json value
    • name

      String name()
      the enum value
      Specified by:
      name in interface JsonEnum
      Returns:
      name
    • toString

      String toString()
      convert value to string
      Specified by:
      toString in interface JsonEnum
      Overrides:
      toString in class Object
      Returns:
      string representation
    • findEnum

      static QuoteRequestState findEnum(String value)
      factory method for a enum value of QuoteRequestState if no enum has been found an anonymous instance will be created
      Parameters:
      value - the enum value to be wrapped
      Returns:
      enum instance
    • findEnumViaJsonName

      static Optional<QuoteRequestState> findEnumViaJsonName(String jsonName)
      method to find enum using the JSON value
      Parameters:
      jsonName - the json value to be wrapped
      Returns:
      optional of enum instance
    • values

      static QuoteRequestState[] values()
      possible enum values
      Returns:
      array of possible enum values