Enum Class ServiceStatus

java.lang.Object
java.lang.Enum<ServiceStatus>
com.caplin.streamlink.ServiceStatus
All Implemented Interfaces:
Serializable, Comparable<ServiceStatus>, Constable

public enum ServiceStatus extends Enum<ServiceStatus>

Enumeration that defines the status of a Service.

The ServiceStatus will be provided by calling getServiceStatus on a ServiceStatusEvent.

The three states that are possible for a Liberator data service are:

  • OK - All of the data sources that make up the service are up.
  • Down - One or more required data sources for the service are down.
  • Limited - One or more non-required data sources for the service are down.
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Indicates that a service is down, which means that at least one of the required sources defined for the service are down.
    Indicates that a service is limited, which means that at least one of the non required sources defined for the service are down (but all of the required sources are up).
    Indicates that the service is OK, which means that all the required and non required sources defined for the service are up.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    static ServiceStatus[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • DOWN

      public static final ServiceStatus DOWN

      Indicates that a service is down, which means that at least one of the required sources defined for the service are down.

    • LIMITED

      public static final ServiceStatus LIMITED

      Indicates that a service is limited, which means that at least one of the non required sources defined for the service are down (but all of the required sources are up).

    • OK

      public static final ServiceStatus OK

      Indicates that the service is OK, which means that all the required and non required sources defined for the service are up.

  • Method Details

    • values

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