public static enum ComponentInvocation.ComponentInvocationType extends Enum<ComponentInvocation.ComponentInvocationType>
| Enum Constant and Description |
|---|
APP_CLIENT_INVOCATION |
EJB_INVOCATION |
SERVICE_STARTUP |
SERVLET_INVOCATION |
UN_INITIALIZED |
| Modifier and Type | Method and Description |
|---|---|
static ComponentInvocation.ComponentInvocationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentInvocation.ComponentInvocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentInvocation.ComponentInvocationType SERVLET_INVOCATION
public static final ComponentInvocation.ComponentInvocationType EJB_INVOCATION
public static final ComponentInvocation.ComponentInvocationType APP_CLIENT_INVOCATION
public static final ComponentInvocation.ComponentInvocationType UN_INITIALIZED
public static final ComponentInvocation.ComponentInvocationType SERVICE_STARTUP
public static ComponentInvocation.ComponentInvocationType[] values()
for (ComponentInvocation.ComponentInvocationType c : ComponentInvocation.ComponentInvocationType.values()) System.out.println(c);
public static ComponentInvocation.ComponentInvocationType 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 © 2017–2020 Eclipse Foundation. All rights reserved.