Package org.codehaus.gmavenplus.plexus
Enum AbstractIncludeProjectDependenciesComponentConfigurator.Classpath
- java.lang.Object
-
- java.lang.Enum<AbstractIncludeProjectDependenciesComponentConfigurator.Classpath>
-
- org.codehaus.gmavenplus.plexus.AbstractIncludeProjectDependenciesComponentConfigurator.Classpath
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractIncludeProjectDependenciesComponentConfigurator.Classpath>
- Enclosing class:
- AbstractIncludeProjectDependenciesComponentConfigurator
public static enum AbstractIncludeProjectDependenciesComponentConfigurator.Classpath extends Enum<AbstractIncludeProjectDependenciesComponentConfigurator.Classpath>
Enum of the various possible classpaths.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractIncludeProjectDependenciesComponentConfigurator.Classpath
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractIncludeProjectDependenciesComponentConfigurator.Classpath[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPILE
public static final AbstractIncludeProjectDependenciesComponentConfigurator.Classpath COMPILE
Compile classpath.
-
RUNTIME
public static final AbstractIncludeProjectDependenciesComponentConfigurator.Classpath RUNTIME
Runtime classpath.
-
TEST
public static final AbstractIncludeProjectDependenciesComponentConfigurator.Classpath TEST
Test classpath.
-
SYSTEM
public static final AbstractIncludeProjectDependenciesComponentConfigurator.Classpath SYSTEM
System classpath.
-
-
Method Detail
-
values
public static AbstractIncludeProjectDependenciesComponentConfigurator.Classpath[] 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 (AbstractIncludeProjectDependenciesComponentConfigurator.Classpath c : AbstractIncludeProjectDependenciesComponentConfigurator.Classpath.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractIncludeProjectDependenciesComponentConfigurator.Classpath 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 nameNullPointerException
- if the argument is null
-
-