public enum ComponentTypes extends Enum<ComponentTypes> implements ComponentType
| Enum Constant and Description |
|---|
CONTAINER
Denotes a container.
|
DEVICE
Denotes an execution resource like an edge device.
|
SERVICE
Denotes a computational service.
|
SERVICE_ARTIFACT
Denotes an artifact containing one or multiple services.
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentTypes DEVICE
public static final ComponentTypes CONTAINER
public static final ComponentTypes SERVICE
public static final ComponentTypes SERVICE_ARTIFACT
public static ComponentTypes[] values()
for (ComponentTypes c : ComponentTypes.values()) System.out.println(c);
public static ComponentTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.