public static enum AasPartRegistry.AasMode extends Enum<AasPartRegistry.AasMode>
| Enum Constant and Description |
|---|
REGISTER
Run a local server and register the AAS with the given registry.
|
REMOTE_DEPLOY
Deploy to the given registry/server.
|
| Modifier and Type | Method and Description |
|---|---|
static AasPartRegistry.AasMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AasPartRegistry.AasMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AasPartRegistry.AasMode REMOTE_DEPLOY
public static final AasPartRegistry.AasMode REGISTER
public static AasPartRegistry.AasMode[] values()
for (AasPartRegistry.AasMode c : AasPartRegistry.AasMode.values()) System.out.println(c);
public static AasPartRegistry.AasMode 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.