Package com.mapr.cli
Enum DebugDbCommands.KVFormatType
- java.lang.Object
-
- java.lang.Enum<DebugDbCommands.KVFormatType>
-
- com.mapr.cli.DebugDbCommands.KVFormatType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DebugDbCommands.KVFormatType>
- Enclosing class:
- DebugDbCommands
public static enum DebugDbCommands.KVFormatType extends java.lang.Enum<DebugDbCommands.KVFormatType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFER_MAPDIRGENERIC_KVINDEX_TABLEINVALIDSCHEMA_INFOSEGMENT_MAPSPILLSPILL_MAPTABLETABLETTABLET_MAP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DebugDbCommands.KVFormatTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DebugDbCommands.KVFormatType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TABLE
public static final DebugDbCommands.KVFormatType TABLE
-
INDEX_TABLE
public static final DebugDbCommands.KVFormatType INDEX_TABLE
-
TABLET_MAP
public static final DebugDbCommands.KVFormatType TABLET_MAP
-
SCHEMA_INFO
public static final DebugDbCommands.KVFormatType SCHEMA_INFO
-
TABLET
public static final DebugDbCommands.KVFormatType TABLET
-
SEGMENT_MAP
public static final DebugDbCommands.KVFormatType SEGMENT_MAP
-
SPILL_MAP
public static final DebugDbCommands.KVFormatType SPILL_MAP
-
SPILL
public static final DebugDbCommands.KVFormatType SPILL
-
DEFER_MAP
public static final DebugDbCommands.KVFormatType DEFER_MAP
-
GENERIC_KV
public static final DebugDbCommands.KVFormatType GENERIC_KV
-
DIR
public static final DebugDbCommands.KVFormatType DIR
-
INVALID
public static final DebugDbCommands.KVFormatType INVALID
-
-
Method Detail
-
values
public static DebugDbCommands.KVFormatType[] 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 (DebugDbCommands.KVFormatType c : DebugDbCommands.KVFormatType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DebugDbCommands.KVFormatType 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
-
-