Package com.mapr.index.tools
Enum VerifyIndex.COUNTERS
- java.lang.Object
-
- java.lang.Enum<VerifyIndex.COUNTERS>
-
- com.mapr.index.tools.VerifyIndex.COUNTERS
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<VerifyIndex.COUNTERS>
- Enclosing class:
- VerifyIndex
public static enum VerifyIndex.COUNTERS extends java.lang.Enum<VerifyIndex.COUNTERS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NUM_ROWS_MISMATCHNUM_ROWS_MISSING_IN_INDEXNUM_ROWS_MISSING_IN_PRIMARY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerifyIndex.COUNTERSvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static VerifyIndex.COUNTERS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUM_ROWS_MISSING_IN_PRIMARY
public static final VerifyIndex.COUNTERS NUM_ROWS_MISSING_IN_PRIMARY
-
NUM_ROWS_MISSING_IN_INDEX
public static final VerifyIndex.COUNTERS NUM_ROWS_MISSING_IN_INDEX
-
NUM_ROWS_MISMATCH
public static final VerifyIndex.COUNTERS NUM_ROWS_MISMATCH
-
-
Method Detail
-
values
public static VerifyIndex.COUNTERS[] 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 (VerifyIndex.COUNTERS c : VerifyIndex.COUNTERS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerifyIndex.COUNTERS 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
-
-