Enum MessageClassType

  • All Implemented Interfaces:
    Serializable, Comparable<MessageClassType>

    public enum MessageClassType
    extends Enum<MessageClassType>

    Java class for MessageClassType.

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

     <simpleType name="MessageClassType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="Service"/>
         <enumeration value="Device"/>
         <enumeration value="Event"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • SERVICE

        public static final MessageClassType SERVICE
        A transaction messageType pair initiated by the Sale System, and requested to the POI System.
      • DEVICE

        public static final MessageClassType DEVICE
        A device messageType pair either: Inside a Service request and response. This device messageType pair is initiated by the POI System, and sent to Sale System,
      • EVENT

        public static final MessageClassType EVENT
        An unsolicited event notification by the POI System to the Sale System.
    • Method Detail

      • values

        public static MessageClassType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MessageClassType c : MessageClassType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MessageClassType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()
        Value string.
        Returns:
        the string
      • fromValue

        public static MessageClassType fromValue​(String v)
        From value message class type.
        Parameters:
        v - the v
        Returns:
        the message class type