Package com.six.timapi.constants
Enum Guides
- java.lang.Object
-
- java.lang.Enum<Guides>
-
- com.six.timapi.constants.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 Summary
Enum Constants Enum Constant Description ADVANCED_RETAIL
Advanced Retail additions: TopUp, Purchase with Cashback etc.AUSTRIAN_USE_CASES
Addons for value added services.BANKING
Banking business cases.CERTIFICATION
Certification.DIALOG
Dialog mode addons.GASTRO
Addons for restaurants.HOSPITALITY
Addons for restaurants.PETROL
Pre-Authorization and fleet management for petrol business.REMOTE
Remote addons.RETAIL
SIXml Retail & Mobile.UNATTENDED
Unattended Terminals in vending machines.VALUE_ADDED_SERVICES
Addons for value added services.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Guides
valueOf(String name)
Returns the enum constant of this type with the specified name.static Guides[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-