public enum InstanceType extends java.lang.Enum<InstanceType>
enumeration lists the predefined types of instances that form an SAP CC system (Core Server, BART Server);
The type information may be used to identify a particular instance in an SAP CC system.
Each type of system instance provides specific services and functions.
InstanceInfo,
InstanceId| Enum Constant and Description |
|---|
bart
Constant for bart instance in the SAP CC system
|
bulkLoader
Constant for bulkloader instances in the SAP CC Core Server system
|
dispatcher
Constant for dispatcher instances in the SAP CC Core Server system
|
guider
Constant for guider instances in the SAP CC Core Server system
|
rater
Constant for rater instances in the SAP CC Core Server system
|
taxer
Constant for taxer instances in the SAP CC system
|
updater
Constant for data updater instances in the SAP CC Core Server system
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getFormattedName() |
static InstanceType |
getInstanceType(java.lang.String name) |
static InstanceType |
getInstanceTypeIgnoreCase(java.lang.String name) |
boolean |
isStandalone() |
static InstanceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstanceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstanceType rater
public static final InstanceType updater
public static final InstanceType guider
public static final InstanceType bulkLoader
public static final InstanceType bart
public static final InstanceType taxer
public static final InstanceType dispatcher
public static InstanceType[] values()
for (InstanceType c : InstanceType.values()) System.out.println(c);
public static InstanceType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getFormattedName()
public boolean isStandalone()
public static final InstanceType getInstanceType(java.lang.String name)
public static final InstanceType getInstanceTypeIgnoreCase(java.lang.String name)