org.apache.maven.plugins.annotations
Enum InstantiationStrategy

java.lang.Object
  extended by java.lang.Enum<InstantiationStrategy>
      extended by org.apache.maven.plugins.annotations.InstantiationStrategy
All Implemented Interfaces:
Serializable, Comparable<InstantiationStrategy>

public enum InstantiationStrategy
extends Enum<InstantiationStrategy>

Component instanciation strategy.

Since:
3.0
Author:
Hervé Boutemy

Enum Constant Summary
KEEP_ALIVE
           
PER_LOOKUP
           
POOLABLE
           
SINGLETON
           
 
Method Summary
 String id()
           
static InstantiationStrategy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static InstantiationStrategy[] 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

PER_LOOKUP

public static final InstantiationStrategy PER_LOOKUP

SINGLETON

public static final InstantiationStrategy SINGLETON

KEEP_ALIVE

public static final InstantiationStrategy KEEP_ALIVE

POOLABLE

public static final InstantiationStrategy POOLABLE
Method Detail

values

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

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

valueOf

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

id

public String id()


Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.