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>

Deprecated.

@Deprecated
public enum InstanciationStrategy
extends Enum<InstanciationStrategy>

Component instantiation strategy.

Since:
3.0
Author:
Hervé Boutemy

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

SINGLETON

public static final InstanciationStrategy SINGLETON
Deprecated. 

KEEP_ALIVE

public static final InstanciationStrategy KEEP_ALIVE
Deprecated. 

POOLABLE

public static final InstanciationStrategy POOLABLE
Deprecated. 
Method Detail

values

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

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

valueOf

public static InstanciationStrategy valueOf(String name)
Deprecated. 
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()
Deprecated. 


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