org.xwiki.component.descriptor
Enum ComponentInstantiationStrategy

java.lang.Object
  extended by java.lang.Enum<ComponentInstantiationStrategy>
      extended by org.xwiki.component.descriptor.ComponentInstantiationStrategy
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ComponentInstantiationStrategy>

public enum ComponentInstantiationStrategy
extends java.lang.Enum<ComponentInstantiationStrategy>

Lists valid instantiation strategy types (singleton, per lookup).

Since:
1.8.1
Version:
$Id: ComponentInstantiationStrategy.java 33969 2011-01-16 15:05:36Z vmassol $

Enum Constant Summary
PER_LOOKUP
          A new component implementation instance is created at a each lookup.
SINGLETON
          The same component implementation instance is returned for all lookups.
 
Method Summary
static ComponentInstantiationStrategy valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ComponentInstantiationStrategy[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SINGLETON

public static final ComponentInstantiationStrategy SINGLETON
The same component implementation instance is returned for all lookups.


PER_LOOKUP

public static final ComponentInstantiationStrategy PER_LOOKUP
A new component implementation instance is created at a each lookup.

Method Detail

values

public static final ComponentInstantiationStrategy[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ComponentInstantiationStrategy c : ComponentInstantiationStrategy.values())
        System.out.println(c);

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

valueOf

public static ComponentInstantiationStrategy 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


Copyright © 2004-2011 XWiki. All Rights Reserved.