Enum Class PaymentStatusCodeContentType

java.lang.Object
java.lang.Enum<PaymentStatusCodeContentType>
de.hybris.platform.ndc182facades.messages.ordercreaterequest.PaymentStatusCodeContentType
All Implemented Interfaces:
Serializable, Comparable<PaymentStatusCodeContentType>, Constable

public enum PaymentStatusCodeContentType extends Enum<PaymentStatusCodeContentType>

Java class for PaymentStatusCodeContentType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="PaymentStatusCodeContentType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="ACCEPTED"/>
     <enumeration value="ALLOCATED"/>
     <enumeration value="CLOSED"/>
     <enumeration value="COMMITTED"/>
     <enumeration value="RECEIVED"/>
     <enumeration value="REFUNDED"/>
     <enumeration value="SENT"/>
   </restriction>
 </simpleType>
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The commitments to pay was accepted./At the Payment Level to indicate that a payment has been authorized, etc.
    The value of compensation was allocated to the corresponding Order Item.
    The payment process was done.
    The payer has committed to pay the compensation./When NDC indicates that part of a payment is to be applied to an order item
    The compensation was received./ The actual receipt of funds is a function of the accounting system, or it it expected that the revenue accounting system will update the order when the bank transmits funds to the airline? Don't think we need this.
    The compensation was transfered back to the payer./When an order item is cancelled or changed, we expect that any payments applied to the item will be un-applied.
    The compensation was transfered.
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ACCEPTED

      public static final PaymentStatusCodeContentType ACCEPTED
      The commitments to pay was accepted./At the Payment Level to indicate that a payment has been authorized, etc. or the status in not needed
    • ALLOCATED

      public static final PaymentStatusCodeContentType ALLOCATED
      The value of compensation was allocated to the corresponding Order Item.
    • CLOSED

      public static final PaymentStatusCodeContentType CLOSED
      The payment process was done.
    • COMMITTED

      public static final PaymentStatusCodeContentType COMMITTED
      The payer has committed to pay the compensation./When NDC indicates that part of a payment is to be applied to an order item
    • RECEIVED

      public static final PaymentStatusCodeContentType RECEIVED
      The compensation was received./ The actual receipt of funds is a function of the accounting system, or it it expected that the revenue accounting system will update the order when the bank transmits funds to the airline? Don't think we need this.
    • REFUNDED

      public static final PaymentStatusCodeContentType REFUNDED
      The compensation was transfered back to the payer./When an order item is cancelled or changed, we expect that any payments applied to the item will be un-applied. this leaves a credit balance on the order that can be applied to a new item of refunded.
    • SENT

      public static final PaymentStatusCodeContentType SENT
      The compensation was transfered.
  • Method Details

    • values

      public static PaymentStatusCodeContentType[] 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 PaymentStatusCodeContentType 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
    • value

      public String value()
    • fromValue

      public static PaymentStatusCodeContentType fromValue(String v)