Enum Class ComponentTypes
- All Implemented Interfaces:
ComponentType,Serializable,Comparable<ComponentTypes>,Constable
The default component types.
- 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 ConstantDescriptionDenotes a container.Denotes an execution resource like an edge device.Denotes a computational service.Denotes an artifact containing one or multiple services. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentTypesReturns the enum constant of this class with the specified name.static ComponentTypes[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEVICE
Denotes an execution resource like an edge device. -
CONTAINER
Denotes a container. -
SERVICE
Denotes a computational service. -
SERVICE_ARTIFACT
Denotes an artifact containing one or multiple services.
-
-
Constructor Details
-
ComponentTypes
private ComponentTypes()
-
-
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
-