Enum Class ServiceStatusCodeContentType

java.lang.Object
java.lang.Enum<ServiceStatusCodeContentType>
de.hybris.platform.oneorderfacades.oneorder.osin.ServiceStatusCodeContentType
All Implemented Interfaces:
Serializable, Comparable<ServiceStatusCodeContentType>, Constable

public enum ServiceStatusCodeContentType extends Enum<ServiceStatusCodeContentType>

Java class for ServiceStatusCodeContentType.

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

 <simpleType name="ServiceStatusCodeContentType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="CONFIRMED"/>
     <enumeration value="DELIVERED"/>
     <enumeration value="EXPIRED"/>
     <enumeration value="FAILED TO DELIVER"/>
     <enumeration value="IN PROGRESS"/>
     <enumeration value="UNABLE"/>
     <enumeration value="NOT CLAIMED"/>
     <enumeration value="READY TO DELIVER"/>
     <enumeration value="READY TO PROCEED"/>
     <enumeration value="REMOVED"/>
     <enumeration value="REQUESTED"/>
     <enumeration value="SUSPENDED"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • CONFIRMED

      public static final ServiceStatusCodeContentType CONFIRMED
      Delivery provider (cabin crew) is in a position to start delivery of the Service.
    • DELIVERED

      public static final ServiceStatusCodeContentType DELIVERED
      Service delivery successfully completed by the Delivery Provider.
    • EXPIRED

      public static final ServiceStatusCodeContentType EXPIRED
      The service was delivered partially
    • FAILED_TO_DELIVER

      public static final ServiceStatusCodeContentType FAILED_TO_DELIVER
      Delivery of the service failed. For example, the passenger was denied boarding.
    • IN_PROGRESS

      public static final ServiceStatusCodeContentType IN_PROGRESS
      Service delivery by delivery provider is in progress.
    • UNABLE

      public static final ServiceStatusCodeContentType UNABLE
      It is not possible for the DP to deliver a Service. This could be for reasons of availability, legal or regulatory constraint.
    • NOT_CLAIMED

      public static final ServiceStatusCodeContentType NOT_CLAIMED
      Customer did not claim the service delivery as expected by the Delivery Provider (e.g. no show).
    • READY_TO_DELIVER

      public static final ServiceStatusCodeContentType READY_TO_DELIVER
      Provider is in a position to start delivery of the service.
    • READY_TO_PROCEED

      public static final ServiceStatusCodeContentType READY_TO_PROCEED
      Airline is in a position to start delivery of the Service, or in a position to allow a Delivery Provider to prepare the service
    • REMOVED

      public static final ServiceStatusCodeContentType REMOVED
      Service delivery successfully completed by the Delivery Provider to the passenger on-board.
    • REQUESTED

      public static final ServiceStatusCodeContentType REQUESTED
      Service is ready to be ordered from the Delivery Provider. (I.e. it has not been ordered as yet!).
    • SUSPENDED

      public static final ServiceStatusCodeContentType SUSPENDED
      Delivery provider was successfully informed about the service he has to deliver.
  • Method Details

    • values

      public static ServiceStatusCodeContentType[] 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 ServiceStatusCodeContentType 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 ServiceStatusCodeContentType fromValue(String v)