org.glassfish.api.invocation
Enum ComponentInvocation.ComponentInvocationType
java.lang.Object
java.lang.Enum<ComponentInvocation.ComponentInvocationType>
org.glassfish.api.invocation.ComponentInvocation.ComponentInvocationType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ComponentInvocation.ComponentInvocationType>
- Enclosing class:
- ComponentInvocation
public static enum ComponentInvocation.ComponentInvocationType
- extends java.lang.Enum<ComponentInvocation.ComponentInvocationType>
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
SERVLET_INVOCATION
public static final ComponentInvocation.ComponentInvocationType SERVLET_INVOCATION
EJB_INVOCATION
public static final ComponentInvocation.ComponentInvocationType EJB_INVOCATION
APP_CLIENT_INVOCATION
public static final ComponentInvocation.ComponentInvocationType APP_CLIENT_INVOCATION
UN_INITIALIZED
public static final ComponentInvocation.ComponentInvocationType UN_INITIALIZED
SERVICE_STARTUP
public static final ComponentInvocation.ComponentInvocationType SERVICE_STARTUP
values
public static ComponentInvocation.ComponentInvocationType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ComponentInvocation.ComponentInvocationType c : ComponentInvocation.ComponentInvocationType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ComponentInvocation.ComponentInvocationType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
Copyright © 2012 GlassFish Community. All Rights Reserved.