public enum ComponentDependencyType extends Enum<ComponentDependencyType>
ComponentController behaves - when it calls IComponentControlHelper.init()
and IComponentControlHelper.start() methods.| Enum Constant and Description |
|---|
STARTS_AFTER
Starts component whenever all dependents broadcasted
IStartedEvent |
STARTS_WITH
Starts component whenever all dependents broadcasted at least
IStartingEvent (or IStartedEvent). |
| Modifier and Type | Method and Description |
|---|---|
static ComponentDependencyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentDependencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentDependencyType STARTS_WITH
IStartingEvent (or IStartedEvent).public static final ComponentDependencyType STARTS_AFTER
IStartedEventpublic static ComponentDependencyType[] values()
for (ComponentDependencyType c : ComponentDependencyType.values()) System.out.println(c);
public static ComponentDependencyType 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 © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.