Package com.mapr.cli
Enum FidCommands.KVFormatType
- java.lang.Object
-
- java.lang.Enum<FidCommands.KVFormatType>
-
- com.mapr.cli.FidCommands.KVFormatType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FidCommands.KVFormatType>
- Enclosing class:
- FidCommands
public static enum FidCommands.KVFormatType extends java.lang.Enum<FidCommands.KVFormatType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FidCommands.KVFormatTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FidCommands.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 FidCommands.KVFormatType TABLE
-
INDEX_TABLE
public static final FidCommands.KVFormatType INDEX_TABLE
-
TABLET_MAP
public static final FidCommands.KVFormatType TABLET_MAP
-
SCHEMA_INFO
public static final FidCommands.KVFormatType SCHEMA_INFO
-
TABLE_STATS
public static final FidCommands.KVFormatType TABLE_STATS
-
TABLET
public static final FidCommands.KVFormatType TABLET
-
SEGMENT_MAP
public static final FidCommands.KVFormatType SEGMENT_MAP
-
SPILL_MAP
public static final FidCommands.KVFormatType SPILL_MAP
-
DEFER_MAP
public static final FidCommands.KVFormatType DEFER_MAP
-
GENERIC_KV
public static final FidCommands.KVFormatType GENERIC_KV
-
DIR
public static final FidCommands.KVFormatType DIR
-
CLDB_CONTAINER_INFO
public static final FidCommands.KVFormatType CLDB_CONTAINER_INFO
-
CLDB_CONTAINER_SIZE_INFO
public static final FidCommands.KVFormatType CLDB_CONTAINER_SIZE_INFO
-
CLDB_CID_MAP
public static final FidCommands.KVFormatType CLDB_CID_MAP
-
CLDB_FS_PROP
public static final FidCommands.KVFormatType CLDB_FS_PROP
-
CLDB_SP_PROP
public static final FidCommands.KVFormatType CLDB_SP_PROP
-
CLDB_VOLUME_NAME
public static final FidCommands.KVFormatType CLDB_VOLUME_NAME
-
CLDB_VOLUME_PROP
public static final FidCommands.KVFormatType CLDB_VOLUME_PROP
-
CLDB_VOLUME_ACES
public static final FidCommands.KVFormatType CLDB_VOLUME_ACES
-
CLDB_VOLUME_QUOTA
public static final FidCommands.KVFormatType CLDB_VOLUME_QUOTA
-
CLDB_SNAPSHOT_INFO
public static final FidCommands.KVFormatType CLDB_SNAPSHOT_INFO
-
CLDB_SP_MAP
public static final FidCommands.KVFormatType CLDB_SP_MAP
-
CLDB_CG_INFO
public static final FidCommands.KVFormatType CLDB_CG_INFO
-
MFS_SNAP_MAP
public static final FidCommands.KVFormatType MFS_SNAP_MAP
-
MFS_SNAP_ID2_CID
public static final FidCommands.KVFormatType MFS_SNAP_ID2_CID
-
MFS_SNAP_CID2_ID
public static final FidCommands.KVFormatType MFS_SNAP_CID2_ID
-
XATTR
public static final FidCommands.KVFormatType XATTR
-
POLICYSERVER_POLICY_INFO
public static final FidCommands.KVFormatType POLICYSERVER_POLICY_INFO
-
POLICYSERVER_COMPOSITE_ID_INFO
public static final FidCommands.KVFormatType POLICYSERVER_COMPOSITE_ID_INFO
-
FILE_FILTER_INFO
public static final FidCommands.KVFormatType FILE_FILTER_INFO
-
HASHED_STRING
public static final FidCommands.KVFormatType HASHED_STRING
-
VIRTUAL_IP_INFO
public static final FidCommands.KVFormatType VIRTUAL_IP_INFO
-
CLDB_AE_PROP
public static final FidCommands.KVFormatType CLDB_AE_PROP
-
ALARM_NODE
public static final FidCommands.KVFormatType ALARM_NODE
-
ALARM_VOLUME
public static final FidCommands.KVFormatType ALARM_VOLUME
-
ALARM_CLUSTER
public static final FidCommands.KVFormatType ALARM_CLUSTER
-
ALARM_AE
public static final FidCommands.KVFormatType ALARM_AE
-
ALARM_PLUGGABLE
public static final FidCommands.KVFormatType ALARM_PLUGGABLE
-
ALARM_GROUPS
public static final FidCommands.KVFormatType ALARM_GROUPS
-
INVALID
public static final FidCommands.KVFormatType INVALID
-
-
Method Detail
-
values
public static FidCommands.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 (FidCommands.KVFormatType c : FidCommands.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 FidCommands.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
-
-