Package org.xwiki.tool.extension
Enum DependencyTreeMojo.EntryPoint
- java.lang.Object
-
- java.lang.Enum<DependencyTreeMojo.EntryPoint>
-
- org.xwiki.tool.extension.DependencyTreeMojo.EntryPoint
-
- All Implemented Interfaces:
Serializable
,Comparable<DependencyTreeMojo.EntryPoint>
- Enclosing class:
- DependencyTreeMojo
public static enum DependencyTreeMojo.EntryPoint extends Enum<DependencyTreeMojo.EntryPoint>
The entry point to start from.- Version:
- $Id: 9fa0e657f5505e8f1c445d906b202c1d54e31b42 $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEPENDENCIES
The dependencies of the project mixed in the same resolution.DEPENDENCIES_ISOLATED
The dependencies of the project each in it's own resolution.PROJECT
The project itself is resolved.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DependencyTreeMojo.EntryPoint
valueOf(String name)
Returns the enum constant of this type with the specified name.static DependencyTreeMojo.EntryPoint[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROJECT
public static final DependencyTreeMojo.EntryPoint PROJECT
The project itself is resolved.
-
DEPENDENCIES
public static final DependencyTreeMojo.EntryPoint DEPENDENCIES
The dependencies of the project mixed in the same resolution.
-
DEPENDENCIES_ISOLATED
public static final DependencyTreeMojo.EntryPoint DEPENDENCIES_ISOLATED
The dependencies of the project each in it's own resolution.
-
-
Method Detail
-
values
public static DependencyTreeMojo.EntryPoint[] 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 (DependencyTreeMojo.EntryPoint c : DependencyTreeMojo.EntryPoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DependencyTreeMojo.EntryPoint 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
-
-