public enum ModelInstanceData extends Enum<ModelInstanceData>
Enum Constant and Description |
---|
ALL
All of the above.
|
PROCESS_INSTANCES
Process instances instantiated in the model instance.
|
PROCESS_LOGS
Process logs of the model instance.
|
SIGNALS
Signal queue of the model instance.
|
VALUES
Complex values used in the model instance.
|
Modifier and Type | Method and Description |
---|---|
static ModelInstanceData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelInstanceData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelInstanceData VALUES
public static final ModelInstanceData SIGNALS
public static final ModelInstanceData PROCESS_INSTANCES
public static final ModelInstanceData PROCESS_LOGS
public static final ModelInstanceData ALL
public static ModelInstanceData[] values()
for (ModelInstanceData c : ModelInstanceData.values()) System.out.println(c);
public static ModelInstanceData 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.