Enum InstantiationStrategy
- java.lang.Object
-
- java.lang.Enum<InstantiationStrategy>
-
- org.apache.maven.plugins.annotations.InstantiationStrategy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InstantiationStrategy>
public enum InstantiationStrategy extends java.lang.Enum<InstantiationStrategy>
Component instantiation strategy.- Since:
- 3.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEEP_ALIVE
PER_LOOKUP
POOLABLE
SINGLETON
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
id
-
Constructor Summary
Constructors Modifier Constructor Description private
InstantiationStrategy(java.lang.String id)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
id()
static InstantiationStrategy
valueOf(java.lang.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 are declared.
-
-
-
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 InstantiationStrategy[] 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 (InstantiationStrategy c : InstantiationStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstantiationStrategy 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 namejava.lang.NullPointerException
- if the argument is null
-
id
public java.lang.String id()
-
-