Module jonix.common

Enum Class MessageStatuss

java.lang.Object
java.lang.Enum<MessageStatuss>
com.tectonica.jonix.common.codelist.MessageStatuss
All Implemented Interfaces:
OnixCodelist, Serializable, Comparable<MessageStatuss>, Constable

public enum MessageStatuss extends Enum<MessageStatuss> implements OnixCodelist
Enum that corresponds to ONIX Codelist 221

Description: Message status

See Also:
  • Enum Constant Details

    • Message_received

      public static final MessageStatuss Message_received
      Message received but not yet parsed (Acknowledgement must contain neither <MessageStatusDetail> nor <RecordStatusSummary>, and should include <NoProduct/>). There is no particular implication that the acknowledgement message is valid - the status is based solely on receipt of a file and minimal parsing of the original ONIX message header to ascertain <MessageNumber> etc. The Acknowledgement message MAY give a date when parsing is planned
    • Message_rejected

      public static final MessageStatuss Message_rejected
      Entire original ONIX message rejected (ie NONE of the data records have been ingested). The status of any recognisable records MAY be summarised in the remainder of the Acknowledgement Message
    • Message_part_processed

      public static final MessageStatuss Message_part_processed
      Original ONIX message partially parsed (ie at least SOME of the data records have been ingested, in whole or in part). Records processed to date MUST be summarised in the remainder of the Acknowledgement Message
    • Message_processed

      public static final MessageStatuss Message_processed
      Original ONIX message parsed and processed in full, and at least SOME of the data records have been ingested, in whole or in part), Results MUST be summarised in the remainder of the Acknowledgement Message
  • Field Details

    • code

      public final String code
    • description

      public final String description
  • Method Details

    • values

      public static MessageStatuss[] 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 MessageStatuss 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
    • getCode

      public String getCode()
      Specified by:
      getCode in interface OnixCodelist
    • getDescription

      public String getDescription()
      Specified by:
      getDescription in interface OnixCodelist
    • byCode

      public static MessageStatuss byCode(String code)
    • byCodeOptional

      public static Optional<MessageStatuss> byCodeOptional(String code)
    • codeToDesciption

      public static String codeToDesciption(String code)