public static enum AasContributor.Kind extends Enum<AasContributor.Kind>
| Enum Constant and Description |
|---|
ACTIVE
An active AAS which also provides remote operations/properties.
|
DYNAMIC
A dynamic AAS with static and dynamic information, but no remote operations/properties.
|
PASSIVE
A passive AAS with static information only.
|
| Modifier and Type | Method and Description |
|---|---|
static AasContributor.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AasContributor.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AasContributor.Kind PASSIVE
public static final AasContributor.Kind DYNAMIC
public static final AasContributor.Kind ACTIVE
public static AasContributor.Kind[] values()
for (AasContributor.Kind c : AasContributor.Kind.values()) System.out.println(c);
public static AasContributor.Kind 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 © 2021. All rights reserved.