Enum Class OpenSettingError

java.lang.Object
java.lang.Enum<OpenSettingError>
com.iizix.device.settings.OpenSettingError
All Implemented Interfaces:
Serializable, Comparable<OpenSettingError>, Constable

public enum OpenSettingError extends Enum<OpenSettingError>
Errors that can occur when opening a setting.
Author:
Christopher Mindus
  • Enum Constant Details

    • ERROR

      public static final OpenSettingError ERROR
      Failed opening the setting on the device: the app is perhaps not running in the foreground.
    • BUSY

      public static final OpenSettingError BUSY
      The open settings can only process one open request at a time, and the initial open settings request has not yet completed.
    • DISPOSED

      public static final OpenSettingError DISPOSED
      The client session has been disposed of before it could process the open setting request.
  • Method Details

    • values

      public static OpenSettingError[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

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