Package com.caplin.streamlink
Enum Class ServiceStatus
- All Implemented Interfaces:
Serializable
,Comparable<ServiceStatus>
,Constable
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 ConstantDescriptionIndicates 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 TypeMethodDescriptionstatic ServiceStatus
Returns the enum constant of this class with the specified name.static ServiceStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DOWN
Indicates that a service is down, which means that at least one of the required sources defined for the service are down.
-
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
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
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
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 nameNullPointerException
- if the argument is null
-