Package org.apache.druid.indexer
Enum HadoopDruidIndexerConfig.IndexJobCounters
- java.lang.Object
-
- java.lang.Enum<HadoopDruidIndexerConfig.IndexJobCounters>
-
- org.apache.druid.indexer.HadoopDruidIndexerConfig.IndexJobCounters
-
- All Implemented Interfaces:
Serializable,Comparable<HadoopDruidIndexerConfig.IndexJobCounters>
- Enclosing class:
- HadoopDruidIndexerConfig
public static enum HadoopDruidIndexerConfig.IndexJobCounters extends Enum<HadoopDruidIndexerConfig.IndexJobCounters>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALID_ROW_COUNTERROWS_PROCESSED_COUNTERROWS_PROCESSED_WITH_ERRORS_COUNTERROWS_THROWN_AWAY_COUNTERROWS_UNPARSEABLE_COUNTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HadoopDruidIndexerConfig.IndexJobCountersvalueOf(String name)Returns the enum constant of this type with the specified name.static HadoopDruidIndexerConfig.IndexJobCounters[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID_ROW_COUNTER
public static final HadoopDruidIndexerConfig.IndexJobCounters INVALID_ROW_COUNTER
-
ROWS_PROCESSED_COUNTER
public static final HadoopDruidIndexerConfig.IndexJobCounters ROWS_PROCESSED_COUNTER
-
ROWS_PROCESSED_WITH_ERRORS_COUNTER
public static final HadoopDruidIndexerConfig.IndexJobCounters ROWS_PROCESSED_WITH_ERRORS_COUNTER
-
ROWS_UNPARSEABLE_COUNTER
public static final HadoopDruidIndexerConfig.IndexJobCounters ROWS_UNPARSEABLE_COUNTER
-
ROWS_THROWN_AWAY_COUNTER
public static final HadoopDruidIndexerConfig.IndexJobCounters ROWS_THROWN_AWAY_COUNTER
-
-
Method Detail
-
values
public static HadoopDruidIndexerConfig.IndexJobCounters[] 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 (HadoopDruidIndexerConfig.IndexJobCounters c : HadoopDruidIndexerConfig.IndexJobCounters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HadoopDruidIndexerConfig.IndexJobCounters 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
-
-