Package org.apache.maven.plugins.invoker
Enum InvokerProperties.InvocationProperty
- java.lang.Object
-
- java.lang.Enum<InvokerProperties.InvocationProperty>
-
- org.apache.maven.plugins.invoker.InvokerProperties.InvocationProperty
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InvokerProperties.InvocationProperty>
- Enclosing class:
- InvokerProperties
private static enum InvokerProperties.InvocationProperty extends java.lang.Enum<InvokerProperties.InvocationProperty>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEBUG
FAILURE_BEHAVIOR
GOALS
MAVEN_OPTS
NON_RECURSIVE
OFFLINE
ORDINAL
PROFILES
PROJECT
SETTINGS_FILE
SYSTEM_PROPERTIES_FILE
TIMEOUT_IN_SECONDS
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
key
-
Constructor Summary
Constructors Modifier Constructor Description private
InvocationProperty(java.lang.String s)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static InvokerProperties.InvocationProperty
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InvokerProperties.InvocationProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROJECT
public static final InvokerProperties.InvocationProperty PROJECT
-
GOALS
public static final InvokerProperties.InvocationProperty GOALS
-
PROFILES
public static final InvokerProperties.InvocationProperty PROFILES
-
MAVEN_OPTS
public static final InvokerProperties.InvocationProperty MAVEN_OPTS
-
FAILURE_BEHAVIOR
public static final InvokerProperties.InvocationProperty FAILURE_BEHAVIOR
-
NON_RECURSIVE
public static final InvokerProperties.InvocationProperty NON_RECURSIVE
-
OFFLINE
public static final InvokerProperties.InvocationProperty OFFLINE
-
SYSTEM_PROPERTIES_FILE
public static final InvokerProperties.InvocationProperty SYSTEM_PROPERTIES_FILE
-
DEBUG
public static final InvokerProperties.InvocationProperty DEBUG
-
SETTINGS_FILE
public static final InvokerProperties.InvocationProperty SETTINGS_FILE
-
TIMEOUT_IN_SECONDS
public static final InvokerProperties.InvocationProperty TIMEOUT_IN_SECONDS
-
ORDINAL
public static final InvokerProperties.InvocationProperty ORDINAL
-
-
Method Detail
-
values
public static InvokerProperties.InvocationProperty[] 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 (InvokerProperties.InvocationProperty c : InvokerProperties.InvocationProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InvokerProperties.InvocationProperty 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<InvokerProperties.InvocationProperty>
-
-