org.picocontainer.script
Enum LifecycleMode

java.lang.Object
  extended by java.lang.Enum<LifecycleMode>
      extended by org.picocontainer.script.LifecycleMode
All Implemented Interfaces:
Serializable, Comparable<LifecycleMode>

public enum LifecycleMode
extends Enum<LifecycleMode>

Enumeration for lifecycle behaviors with the container builders.

Author:
Michael Rimov

Enum Constant Summary
AUTO_LIFECYCLE
          Uses standard lifecycle methods -- start is called when the container is started, and stop is called when the container is stopped and disposed.
NO_LIFECYCLE
          No start/stop methods are called when the containers are built/killed.
 
Method Summary
 boolean isInvokeLifecycle()
          Returns true if lifecycle methods should be called.
static LifecycleMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LifecycleMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

AUTO_LIFECYCLE

public static final LifecycleMode AUTO_LIFECYCLE
Uses standard lifecycle methods -- start is called when the container is started, and stop is called when the container is stopped and disposed.


NO_LIFECYCLE

public static final LifecycleMode NO_LIFECYCLE
No start/stop methods are called when the containers are built/killed. Dispose, is called. //TODO: Dispose called? Proper or improper.

Method Detail

values

public static LifecycleMode[] 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 (LifecycleMode c : LifecycleMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LifecycleMode valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

isInvokeLifecycle

public boolean isInvokeLifecycle()
Returns true if lifecycle methods should be called.

Returns:


Copyright © 2003-2010 Codehaus. All Rights Reserved.