Enum ServiceCode3

    • Enum Constant Detail

      • NO_RESTRICTIONS_PIN_REQUIRED

        public static final ServiceCode3 NO_RESTRICTIONS_PIN_REQUIRED
      • NO_RESTRICTIONS

        public static final ServiceCode3 NO_RESTRICTIONS
      • GOODS_AND_SERVICES_ONLY_NO_CASH

        public static final ServiceCode3 GOODS_AND_SERVICES_ONLY_NO_CASH
      • ATM_ONLY_PIN_REQUIRED

        public static final ServiceCode3 ATM_ONLY_PIN_REQUIRED
      • GOODS_AND_SERVICES_ONLY_NO_CASH_PIN_REQUIRED

        public static final ServiceCode3 GOODS_AND_SERVICES_ONLY_NO_CASH_PIN_REQUIRED
      • NO_RESTRICTIONS_USE_PIN_WHERE_FEASIBLE

        public static final ServiceCode3 NO_RESTRICTIONS_USE_PIN_WHERE_FEASIBLE
      • GOODS_AND_SERVICES_ONLY_NO_CASH_USE_PIN_WHERE_FEASIBLE

        public static final ServiceCode3 GOODS_AND_SERVICES_ONLY_NO_CASH_USE_PIN_WHERE_FEASIBLE
    • Method Detail

      • values

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

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