Enum Class ServiceKind
- All Implemented Interfaces:
Serializable,Comparable<ServiceKind>,Constable
Defines the service kind.
- Author:
- Holger Eichelberger, SSE
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA probe service receiving data and turning it into alarms or monitoring information.A server process being executed in the environment of a service to utilize the communication capabilities of the service/transport/parameters.A sink service consuming data and not re-emitting data.A source service providing some form of input data, e.g., a connector.A transformation service in the widest sense, may be an AI service. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceKindReturns the enum constant of this class with the specified name.static ServiceKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOURCE_SERVICE
A source service providing some form of input data, e.g., a connector. -
TRANSFORMATION_SERVICE
A transformation service in the widest sense, may be an AI service. -
SINK_SERVICE
A sink service consuming data and not re-emitting data. -
PROBE_SERVICE
A probe service receiving data and turning it into alarms or monitoring information. -
SERVER
A server process being executed in the environment of a service to utilize the communication capabilities of the service/transport/parameters. Internal service kind.
-
-
Constructor Details
-
ServiceKind
private ServiceKind()
-
-
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
-