org.apache.maven.plugins.annotations
Enum InstanciationStrategy

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

public enum InstanciationStrategy
extends Enum<InstanciationStrategy>

Component instanciation strategy.

Since:
3.0
Author:
Hervé Boutemy

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

PER_LOOKUP

public static final InstanciationStrategy PER_LOOKUP

SINGLETON

public static final InstanciationStrategy SINGLETON

KEEP_ALIVE

public static final InstanciationStrategy KEEP_ALIVE

POOLABLE

public static final InstanciationStrategy POOLABLE
Method Detail

values

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

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

valueOf

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

id

public String id()


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