Enum Connectivity.SimcardStatusEnum

  • All Implemented Interfaces:
    Serializable, Comparable<Connectivity.SimcardStatusEnum>
    Enclosing class:
    Connectivity

    public static enum Connectivity.SimcardStatusEnum
    extends Enum<Connectivity.SimcardStatusEnum>
    Indicates the status of the SIM card in the payment terminal. Can be updated and received only at terminal level, and only for models that support cellular connectivity. Possible values: * **ACTIVATED**: the SIM card is activated. Cellular connectivity may still need to be enabled on the terminal itself, in the **Network** settings. * **INVENTORY**: the SIM card is not activated. The terminal can't use cellular connectivity.
    • Method Detail

      • values

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

        public static Connectivity.SimcardStatusEnum 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
      • getValue

        public String getValue()