Enum Guides

  • All Implemented Interfaces:
    Serializable, Comparable<Guides>

    public enum Guides
    extends Enum<Guides>

    Flag constants for FeatureType and OptionType sixml:Guides value.

    Specification: retail.

    • Enum Constant Detail

      • RETAIL

        public static final Guides RETAIL

        SIXml Retail & Mobile. Fundamental retail business cases.

        Specification: retail.

      • UNATTENDED

        public static final Guides UNATTENDED

        Unattended Terminals in vending machines.

        Specification: retail.

      • ADVANCED_RETAIL

        public static final Guides ADVANCED_RETAIL

        Advanced Retail additions: TopUp, Purchase with Cashback etc.

        Specification: retail.

      • BANKING

        public static final Guides BANKING

        Banking business cases.

        Specification: retail.

      • PETROL

        public static final Guides PETROL

        Pre-Authorization and fleet management for petrol business.

        Specification: retail.

      • DIALOG

        public static final Guides DIALOG

        Dialog mode addons.

        Specification: retail.

      • REMOTE

        public static final Guides REMOTE

        Remote addons.

        Specification: retail.

      • GASTRO

        public static final Guides GASTRO

        Addons for restaurants.

        Specification: retail.

      • HOSPITALITY

        public static final Guides HOSPITALITY

        Addons for restaurants.

        Specification: retail.

      • VALUE_ADDED_SERVICES

        public static final Guides VALUE_ADDED_SERVICES

        Addons for value added services.

        Specification: retail.

      • AUSTRIAN_USE_CASES

        public static final Guides AUSTRIAN_USE_CASES

        Addons for value added services.

        Specification: retail.

      • CERTIFICATION

        public static final Guides CERTIFICATION

        Certification.

        Specification: retail.

    • Method Detail

      • values

        public static Guides[] 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 (Guides c : Guides.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Guides 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