Enum Class ConfigurationStatus

Object
Enum<ConfigurationStatus>
com.zebra.sdk.weblink.ConfigurationStatus
All Implemented Interfaces:
Serializable, Comparable<ConfigurationStatus>, Constable

public enum ConfigurationStatus extends Enum<ConfigurationStatus>
Enumeration of a task's status
  • Enum Constant Details

    • NOT_STARTED

      public static final ConfigurationStatus NOT_STARTED
      Configuration state indicating the task has not been started
    • IN_PROCESS

      public static final ConfigurationStatus IN_PROCESS
      Configuration state indicating the task is in process
    • SUCCESSFULLY_COMPLETED

      public static final ConfigurationStatus SUCCESSFULLY_COMPLETED
      Configuration state indicating the task completed successfully
    • CONFIGURATION_FAILED

      public static final ConfigurationStatus CONFIGURATION_FAILED
      Configuration state indicating the task failed
  • Method Details

    • values

      public static ConfigurationStatus[] 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 ConfigurationStatus 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