Package org.apache.hop.execution
Enum ExecutionMetricsType
- java.lang.Object
-
- java.lang.Enum<ExecutionMetricsType>
-
- org.apache.hop.execution.ExecutionMetricsType
-
- All Implemented Interfaces:
Serializable,Comparable<ExecutionMetricsType>
public enum ExecutionMetricsType extends Enum<ExecutionMetricsType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BufferSizeInputBufferSizeOutputErrorsInputOutputReadRejectedUpdatedWritten
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutionMetricsTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ExecutionMetricsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Input
public static final ExecutionMetricsType Input
-
Output
public static final ExecutionMetricsType Output
-
Read
public static final ExecutionMetricsType Read
-
Written
public static final ExecutionMetricsType Written
-
Updated
public static final ExecutionMetricsType Updated
-
Rejected
public static final ExecutionMetricsType Rejected
-
Errors
public static final ExecutionMetricsType Errors
-
BufferSizeInput
public static final ExecutionMetricsType BufferSizeInput
-
BufferSizeOutput
public static final ExecutionMetricsType BufferSizeOutput
-
-
Method Detail
-
values
public static ExecutionMetricsType[] 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 (ExecutionMetricsType c : ExecutionMetricsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionMetricsType 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
-
-