Package org.apache.camel.k
Enum Runtime.Phase
- java.lang.Object
-
- java.lang.Enum<Runtime.Phase>
-
- org.apache.camel.k.Runtime.Phase
-
- All Implemented Interfaces:
Serializable
,Comparable<Runtime.Phase>
- Enclosing interface:
- Runtime
public static enum Runtime.Phase extends Enum<Runtime.Phase>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ConfigureContext
ConfigureProperties
ConfigureRoutes
Initializing
Started
Starting
Stopped
Stopping
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Runtime.Phase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Runtime.Phase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Initializing
public static final Runtime.Phase Initializing
-
ConfigureProperties
public static final Runtime.Phase ConfigureProperties
-
ConfigureContext
public static final Runtime.Phase ConfigureContext
-
ConfigureRoutes
public static final Runtime.Phase ConfigureRoutes
-
Starting
public static final Runtime.Phase Starting
-
Started
public static final Runtime.Phase Started
-
Stopping
public static final Runtime.Phase Stopping
-
Stopped
public static final Runtime.Phase Stopped
-
-
Method Detail
-
values
public static Runtime.Phase[] 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 (Runtime.Phase c : Runtime.Phase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Runtime.Phase 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
-
-