public enum RuntimeType extends Enum<RuntimeType>
| Enum Constant and Description |
|---|
ALL
All instances in the domain
|
DAS
the Domain Administration Server
|
EMBEDDED
Embedded
|
INSTANCE
a single instance or a clustered instance ?need to dissambiguate?
|
NODE_AGENT
the node agent process
|
SINGLE_INSTANCE
The local single instance on which the command will run
|
| Modifier and Type | Method and Description |
|---|---|
static RuntimeType |
getDefault() |
boolean |
isBroadcast() |
boolean |
isDas() |
boolean |
isEmbedded() |
boolean |
isInstance() |
boolean |
isNodeAgent() |
boolean |
isSingleInstance() |
static RuntimeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeType DAS
public static final RuntimeType NODE_AGENT
public static final RuntimeType INSTANCE
public static final RuntimeType EMBEDDED
public static final RuntimeType SINGLE_INSTANCE
public static final RuntimeType ALL
public static RuntimeType[] values()
for (RuntimeType c : RuntimeType.values()) System.out.println(c);
public static RuntimeType 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 nullpublic final boolean isInstance()
public final boolean isDas()
public final boolean isNodeAgent()
public final boolean isEmbedded()
public final boolean isBroadcast()
public final boolean isSingleInstance()
public static final RuntimeType getDefault()
Copyright © 2017–2020 Eclipse Foundation. All rights reserved.